From 724e88e1839fa9a50f39a96efdcc864e257d29b5 Mon Sep 17 00:00:00 2001 From: bfren Date: Fri, 11 Oct 2024 10:21:04 +0200 Subject: [PATCH] Updating to S6 Overlay 3.2.0.2 --- 11/Dockerfile | 6 +++--- 12/Dockerfile | 6 +++--- generate-dockerfiles.sh | 4 ++-- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/11/Dockerfile b/11/Dockerfile index 060f7d4..ddb4149 100644 --- a/11/Dockerfile +++ b/11/Dockerfile @@ -16,7 +16,7 @@ RUN \ *) echo "Unsupported target platform: ${TARGETPLATFORM}." && exit 1 ;; \ esac && \ printf "%s" "${ARCH}" > ARCH && \ - URL=https://github.com/just-containers/s6-overlay/releases/download/v3.2.0.0/s6-overlay && \ + URL=https://github.com/just-containers/s6-overlay/releases/download/v3.2.0.2/s6-overlay && \ wget ${URL}-${ARCH}.tar.xz && \ wget ${URL}-${ARCH}.tar.xz.sha256 && \ wget ${URL}-noarch.tar.xz && \ @@ -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.10 https://github.com/bfren/docker-alpine-s6.git && \ + apk add git && git clone --branch v5.4.11 https://github.com/bfren/docker-alpine-s6.git && \ mv docker-alpine-s6/overlay / @@ -69,7 +69,7 @@ ENV \ RUN \ # add S6 Overlay to the build log - bf-build-add "S6 Overlay" "3.2.0.0" && \ + bf-build-add "S6 Overlay" "3.2.0.2" && \ # run standard bf installation executable bf-install diff --git a/12/Dockerfile b/12/Dockerfile index 998c13d..9b1f4ca 100644 --- a/12/Dockerfile +++ b/12/Dockerfile @@ -16,7 +16,7 @@ RUN \ *) echo "Unsupported target platform: ${TARGETPLATFORM}." && exit 1 ;; \ esac && \ printf "%s" "${ARCH}" > ARCH && \ - URL=https://github.com/just-containers/s6-overlay/releases/download/v3.2.0.0/s6-overlay && \ + URL=https://github.com/just-containers/s6-overlay/releases/download/v3.2.0.2/s6-overlay && \ wget ${URL}-${ARCH}.tar.xz && \ wget ${URL}-${ARCH}.tar.xz.sha256 && \ wget ${URL}-noarch.tar.xz && \ @@ -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.10 https://github.com/bfren/docker-alpine-s6.git && \ + apk add git && git clone --branch v5.4.11 https://github.com/bfren/docker-alpine-s6.git && \ mv docker-alpine-s6/overlay / @@ -69,7 +69,7 @@ ENV \ RUN \ # add S6 Overlay to the build log - bf-build-add "S6 Overlay" "3.2.0.0" && \ + bf-build-add "S6 Overlay" "3.2.0.2" && \ # run standard bf installation executable bf-install diff --git a/generate-dockerfiles.sh b/generate-dockerfiles.sh index 9549915..2f50911 100755 --- a/generate-dockerfiles.sh +++ b/generate-dockerfiles.sh @@ -5,8 +5,8 @@ set -euo pipefail docker pull bfren/alpine BASE_VERSION="3.3.0" -ALPINE_BRANCH="v5.4.10" -S6_VERSION="3.2.0.0" +ALPINE_BRANCH="v5.4.11" +S6_VERSION="3.2.0.2" DEBIAN_VERSIONS="11 12" for V in ${DEBIAN_VERSIONS} ; do