base (6afea2c3)
Published 2026-02-23 22:27:09 +10:00 by j
Installation
docker pull repobase.net/dxcker/base:6afea2c3sha256:88890cbfdfd2ce9eab3a98621f19c5e86005613a2f697355071af1788b70993eImage layers
| # debian.sh --arch 'amd64' out/ 'trixie' '@1766966400' |
| ENV DEBIAN_FRONTEND=noninteractive |
| ENV APP_UID=1000 |
| ENV APP_GID=1000 |
| ENV CONFIG_DIR=/config |
| ENV DATA_DIR=/data |
| RUN /bin/sh -c apt update # buildkit |
| RUN /bin/sh -c apt -y upgrade # buildkit |
| RUN /bin/sh -c apt -y install curl tini ca-certificates ssl-cert # buildkit |
| RUN /bin/sh -c apt clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* # buildkit |
| RUN /bin/sh -c groupadd -g ${APP_UID} app # buildkit |
| RUN /bin/sh -c useradd -u ${APP_GID} -g app app # buildkit |
| RUN /bin/sh -c usermod -a -G ssl-cert app # buildkit |
| RUN /bin/sh -c mkdir -p $CONFIG_DIR $DATA_DIR # buildkit |
| RUN /bin/sh -c chown -R app:app $CONFIG_DIR $DATA_DIR # buildkit |
| RUN /bin/sh -c chmod 755 $CONFIG_DIR $DATA_DIR # buildkit |
| COPY common.rc /common.rc # buildkit |
| RUN /bin/sh -c chown app:app /common.rc && chmod +x /common.rc # buildkit |
| COPY entrypoint.sh /entrypoint.sh # buildkit |
| RUN /bin/sh -c chown app:app /entrypoint.sh && chmod +x /entrypoint.sh # buildkit |
| ENTRYPOINT ["/entrypoint.sh"] |
| CMD ["--" "sleep" "infinity"] |