base (latest)
Published 2026-02-24 19:22:01 +10:00 by j
Installation
docker pull repobase.net/dxcker/base:latestsha256:6328e7ae5198e4df4817f4531579f04a063778251b1bbf406b3b5b26e8c20ea6Image 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 && apt -y upgrade && apt -y install curl tini ca-certificates ssl-cert && apt clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* # buildkit |
| RUN /bin/sh -c groupadd -g ${APP_UID} app && 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 files/scripts/common.rc /common.rc # buildkit |
| RUN /bin/sh -c chown app:app /common.rc && chmod +x /common.rc # buildkit |
| COPY files/scripts/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"] |