From eaa2c15342621912f07342ab83e27f954ea385b6 Mon Sep 17 00:00:00 2001 From: Sebastian Hugentobler Date: Tue, 10 Dec 2024 11:35:25 +0100 Subject: [PATCH] update alpine to 3.21 and s6 to 3.2.0.2 --- Containerfile | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Containerfile b/Containerfile index 95d6b3a..14b0ef4 100644 --- a/Containerfile +++ b/Containerfile @@ -1,4 +1,4 @@ -FROM docker.io/alpine:3.20 AS builder +FROM docker.io/alpine:3.21 AS builder LABEL maintainer="Sebastian Hugentobler " RUN apk --no-cache add \ @@ -8,10 +8,10 @@ RUN apk --no-cache add \ RUN mkdir /overlay -ENV S6_OVERLAY_VERSION=v3.1.6.2 -ENV S6_HASH_noarch=05af2536ec4fb23f087a43ce305f8962512890d7c71572ed88852ab91d1434e3 -ENV S6_HASH_aarch64=3fc0bae418a0e3811b3deeadfca9cc2f0869fb2f4787ab8a53f6944067d140ee -ENV S6_HASH_x86_64=95081f11c56e5a351e9ccab4e70c2b1c3d7d056d82b72502b942762112c03d1c +ENV S6_OVERLAY_VERSION=v3.2.0.2 +ENV S6_HASH_noarch=6dbcde158a3e78b9bb141d7bcb5ccb421e563523babbe2c64470e76f4fd02dae +ENV S6_HASH_aarch64=8b22a2eaca4bf0b27a43d36e65c89d2701738f628d1abd0cea5569619f66f785 +ENV S6_HASH_x86_64=59289456ab1761e277bd456a95e737c06b03ede99158beb24f12b165a904f478 RUN curl -L -O https://github.com/just-containers/s6-overlay/releases/download/$S6_OVERLAY_VERSION/s6-overlay-noarch.tar.xz RUN echo "$S6_HASH_noarch s6-overlay-noarch.tar.xz" | sha256sum -c - || exit 1 @@ -22,7 +22,7 @@ RUN eval "echo \"\${S6_HASH_$(arch)} s6-overlay-$(arch).tar.xz\" | sha256sum -c RUN tar xf s6-overlay-$(arch).tar.xz -C /overlay --strip 1 -FROM docker.io/alpine:3.20 +FROM docker.io/alpine:3.21 ENV LANG=en_US.UTF-8 ENV S6_KEEP_ENV=1