Dockerfile aktualisiert
Some checks failed
Docker Build / Build amd64 & arm64 (push) Failing after 10s

This commit is contained in:
2026-02-04 23:59:45 +00:00
parent 15572e9e27
commit 6573f80f91

View File

@@ -17,10 +17,11 @@ RUN case "${TARGETARCH}" in \
esac esac
# build rootfs # build rootfs
RUN apk add --no-cache bash xz ${PACKAGES//,/ } RUN apk add --no-cache ${PACKAGES//,/ }
# s6 overlay # s6 overlay
RUN ARCH="$(cat /arch)" && \ RUN mkdir -p /root-out && \
ARCH="$(cat /arch)" && \
curl -fsSL https://github.com/just-containers/s6-overlay/releases/download/v${S6_OVERLAY_VERSION}/s6-overlay-noarch.tar.xz \ curl -fsSL https://github.com/just-containers/s6-overlay/releases/download/v${S6_OVERLAY_VERSION}/s6-overlay-noarch.tar.xz \
| tar -C "${ROOTFS}" -Jxpf - && \ | tar -C "${ROOTFS}" -Jxpf - && \
curl -fsSL https://github.com/just-containers/s6-overlay/releases/download/v${S6_OVERLAY_VERSION}/s6-overlay-${ARCH}.tar.xz \ curl -fsSL https://github.com/just-containers/s6-overlay/releases/download/v${S6_OVERLAY_VERSION}/s6-overlay-${ARCH}.tar.xz \