-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDockerfile
More file actions
16 lines (13 loc) · 579 Bytes
/
Dockerfile
File metadata and controls
16 lines (13 loc) · 579 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
FROM alpine:3.20
ARG BIN="/usr/bin/codjixd"
ARG SCRIPT="https://dub.sh/codjixd"
ARG VERSION="1.0.1"
LABEL maintainer="Ibrahim Megahed <admin@codjix.me>" \
org.opencontainers.image.title="codjixd" \
org.opencontainers.image.description="A lightweight and flexible service manager for Linux systems." \
org.opencontainers.image.authors="Ibrahim Megahed <admin@codjix.me>" \
org.opencontainers.image.version="${VERSION}"
RUN apk add --no-cache bash procps less && \
mkdir -p /opt/codjixd/services && \
wget ${SCRIPT} -O ${BIN} && \
chmod 777 ${BIN}