Block a user
base-image-debian-bookworm-slim-s6 (sha256:e21869dd8a2f09256bd65021c7df7a113253e6a23475e198442e97780a2a1248)
Installation
docker pull git.pi-farm.de/pi-farm/base-image-debian-bookworm-slim-s6@sha256:e21869dd8a2f09256bd65021c7df7a113253e6a23475e198442e97780a2a1248sha256:e21869dd8a2f09256bd65021c7df7a113253e6a23475e198442e97780a2a1248Image Layers
| # debian.sh --arch 'armhf' out/ 'bookworm' '@1757289600' |
| ARG s6_version=3.2.1.0 |
| RUN |1 s6_version=3.2.1.0 /bin/sh -c apt-get update && apt-get upgrade -y && apt-get autoremove -y && apt-get -y install xz-utils wget && rm -rf /var/lib/apt/list/* # buildkit |
| RUN |1 s6_version=3.2.1.0 /bin/sh -c wget -O /tmp/s6-overlay-noarch.tar.xz https://github.com/just-containers/s6-overlay/releases/download/v${s6_version}/s6-overlay-noarch.tar.xz # buildkit |
| RUN |1 s6_version=3.2.1.0 /bin/sh -c tar -C / -Jxpf /tmp/s6-overlay-noarch.tar.xz # buildkit |
| RUN |1 s6_version=3.2.1.0 /bin/sh -c if [ $(arch) = "i386" ] ; then wget -O /tmp/s6-overlay-i686.tar.xz https://github.com/just-containers/s6-overlay/releases/download/v${s6_version}/s6-overlay-i686.tar.xz ; fi; # buildkit |
| RUN |1 s6_version=3.2.1.0 /bin/sh -c if [ $(arch) = "i386" ] ; then tar -C / -Jxpf /tmp/s6-overlay-i686.tar.xz ; fi; # buildkit |
| RUN |1 s6_version=3.2.1.0 /bin/sh -c if [ $(arch) = "x86_64" ] ; then wget -O /tmp/s6-overlay-x86_64.tar.xz https://github.com/just-containers/s6-overlay/releases/download/v${s6_version}/s6-overlay-x86_64.tar.xz ; fi; # buildkit |
| RUN |1 s6_version=3.2.1.0 /bin/sh -c if [ $(arch) = "x86_64" ] ; then tar -C / -Jxpf /tmp/s6-overlay-x86_64.tar.xz ; fi; # buildkit |
| RUN |1 s6_version=3.2.1.0 /bin/sh -c if [ $(arch) = "arm64" ] ; then wget -O /tmp/s6-overlay-aarch64.tar.xz https://github.com/just-containers/s6-overlay/releases/download/v${s6_version}/s6-overlay-aarch64.tar.xz ; fi; # buildkit |
| RUN |1 s6_version=3.2.1.0 /bin/sh -c if [ $(arch) = "arm64" ] ; then tar -C / -Jxpf /tmp/s6-overlay-aarch64.tar.xz ; fi; # buildkit |
| RUN |1 s6_version=3.2.1.0 /bin/sh -c if [ $(arch) = "armv7l" ] ; then wget -O /tmp/s6-overlay-arm.tar.xz https://github.com/just-containers/s6-overlay/releases/download/v${s6_version}/s6-overlay-arm.tar.xz ; fi; # buildkit |
| RUN |1 s6_version=3.2.1.0 /bin/sh -c if [ $(arch) = "armv7l" ] ; then tar -C / -Jxpf /tmp/s6-overlay-arm.tar.xz ; fi; # buildkit |
| RUN |1 s6_version=3.2.1.0 /bin/sh -c mkdir /app && rm -rf /tmp/* # buildkit |
| WORKDIR /app |
| ENTRYPOINT ["/init"] |