From 211212d03fc5c0e4c24a85cb279b29b0c6d4ae14 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 27 Feb 2023 11:06:56 +0000 Subject: [PATCH] Bump alpine from 3.15 to 3.17 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] --- Dockerfile | 6 +++--- Dockerfile.legacy | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index 97bd5b6..a3db8f7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -11,7 +11,7 @@ ADD "${S6_OVERLAY_RELEASE}/v${S6_OVERLAY_VERSION}/s6-overlay-noarch${S6_OVERLAY_ # Second stage - Download s6-overlay platform-dependent binaries and unpack -FROM --platform=${TARGETPLATFORM} alpine:3.16.2 AS downloader-s6-bin +FROM --platform=${TARGETPLATFORM} alpine:3.17.2 AS downloader-s6-bin ARG TARGETPLATFORM ARG S6_OVERLAY_VERSION ARG S6_OVERLAY_RELEASE @@ -26,7 +26,7 @@ RUN set -eux \ # Third stage - Download s6-overlay platform-dependent hashes -FROM --platform=${TARGETPLATFORM} alpine:3.16.2 AS downloader-s6-sha256-sums +FROM --platform=${TARGETPLATFORM} alpine:3.17.2 AS downloader-s6-sha256-sums ARG TARGETPLATFORM ARG S6_OVERLAY_VERSION ARG S6_OVERLAY_RELEASE @@ -46,7 +46,7 @@ RUN set -eux \ # Fourth stage - Build rootfs from s6 parts -FROM alpine:3.16.2 AS rootfs-builder +FROM alpine:3.17.2 AS rootfs-builder COPY --from=downloader-s6-sha256-sums ["/SHA256SUMS", "/"] COPY --from=downloader-s6-base ["/s6overlay-base.tar.xz", "/s6overlay-base.tar.xz"] diff --git a/Dockerfile.legacy b/Dockerfile.legacy index a6be747..02926ac 100644 --- a/Dockerfile.legacy +++ b/Dockerfile.legacy @@ -1,5 +1,5 @@ # First stage - Download s6-overlay and unpack it -FROM --platform=${TARGETPLATFORM} alpine:3.15 AS downloader +FROM --platform=${TARGETPLATFORM} alpine:3.17 AS downloader ARG TARGETPLATFORM