From ab676a29d1771745f66ddae9005c857a026777e2 Mon Sep 17 00:00:00 2001 From: bfren Date: Wed, 23 Oct 2024 15:27:51 +0100 Subject: [PATCH] Using latest base images --- 11/Dockerfile | 4 ++-- 12/Dockerfile | 4 ++-- generate-dockerfiles.sh | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/11/Dockerfile b/11/Dockerfile index 6722f35..8c7b486 100644 --- a/11/Dockerfile +++ b/11/Dockerfile @@ -33,7 +33,7 @@ WORKDIR /tmp RUN \ # get the overlay from the Alpine S6 base image echo "Cloning Alpine S6 overlay." && \ - apk add git && git clone --branch v5.4.12 https://github.com/bfren/docker-alpine-s6.git && \ + apk add git && git clone --branch v5.4.13 https://github.com/bfren/docker-alpine-s6.git && \ mv docker-alpine-s6/overlay / @@ -41,7 +41,7 @@ RUN \ # STAGE 2: create final image #====================================================================================================================== -FROM ghcr.io/bfren/debian:bullseye-3.3.2 +FROM ghcr.io/bfren/debian:bullseye-3.3.3 COPY --from=s6 /s6 /s6 COPY --from=alpine /overlay / diff --git a/12/Dockerfile b/12/Dockerfile index be81301..26d453d 100644 --- a/12/Dockerfile +++ b/12/Dockerfile @@ -33,7 +33,7 @@ WORKDIR /tmp RUN \ # get the overlay from the Alpine S6 base image echo "Cloning Alpine S6 overlay." && \ - apk add git && git clone --branch v5.4.12 https://github.com/bfren/docker-alpine-s6.git && \ + apk add git && git clone --branch v5.4.13 https://github.com/bfren/docker-alpine-s6.git && \ mv docker-alpine-s6/overlay / @@ -41,7 +41,7 @@ RUN \ # STAGE 2: create final image #====================================================================================================================== -FROM ghcr.io/bfren/debian:bookworm-3.3.2 +FROM ghcr.io/bfren/debian:bookworm-3.3.3 COPY --from=s6 /s6 /s6 COPY --from=alpine /overlay / diff --git a/generate-dockerfiles.sh b/generate-dockerfiles.sh index 4d63807..1f2ea84 100755 --- a/generate-dockerfiles.sh +++ b/generate-dockerfiles.sh @@ -4,8 +4,8 @@ set -euo pipefail docker pull bfren/alpine -BASE_VERSION="3.3.2" -ALPINE_BRANCH="v5.4.12" +BASE_VERSION="3.3.3" +ALPINE_BRANCH="v5.4.13" S6_VERSION="3.2.0.2" DEBIAN_VERSIONS="11 12"