mirror of
https://github.com/N0rthernL1ghts/s6-rootfs.git
synced 2024-11-23 16:32:42 +01:00
211212d03f
Bumps alpine from 3.15 to 3.17. --- updated-dependencies: - dependency-name: alpine dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
22 lines
734 B
Docker
22 lines
734 B
Docker
# First stage - Download s6-overlay and unpack it
|
|
FROM --platform=${TARGETPLATFORM} alpine:3.17 AS downloader
|
|
|
|
ARG TARGETPLATFORM
|
|
|
|
# S6 Overlay
|
|
ARG S6_OVERLAY_VERSION="2.2.0.3"
|
|
ARG S6_OVERLAY_RELEASE="https://github.com/just-containers/s6-overlay/releases/download/v${S6_OVERLAY_VERSION}/s6-overlay-${TARGETPLATFORM}.tar.gz"
|
|
|
|
WORKDIR "/s6-overlay/"
|
|
|
|
RUN apk add --no-cache wget tar gzip \
|
|
&& wget -O /tmp/s6overlay.tar.gz $(echo ${S6_OVERLAY_RELEASE} | sed 's/linux\///g' | sed 's/arm64/aarch64/g' | sed 's/arm\/v7/armhf/g') \
|
|
&& tar xzf /tmp/s6overlay.tar.gz -C /s6-overlay
|
|
|
|
|
|
# Final stage
|
|
FROM scratch AS s6-rootfs
|
|
|
|
LABEL maintainer="Aleksandar Puharic <aleksandar@puharic.com>"
|
|
|
|
COPY --from=downloader ["/s6-overlay/", "/"] |