From 7d9dcaed61f077774a231b20e6717442b5119fcf Mon Sep 17 00:00:00 2001 From: Jesper Noordsij Date: Wed, 3 Dec 2025 17:25:08 +0100 Subject: [PATCH] Update to Alpine 3.23 --- 29/cli/Dockerfile | 2 +- 29/dind/Dockerfile | 2 +- Dockerfile-cli.template | 2 +- Dockerfile-dind.template | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/29/cli/Dockerfile b/29/cli/Dockerfile index 913c32d3d..db83b00c7 100644 --- a/29/cli/Dockerfile +++ b/29/cli/Dockerfile @@ -4,7 +4,7 @@ # PLEASE DO NOT EDIT IT DIRECTLY. # -FROM alpine:3.22 +FROM alpine:3.23 RUN apk add --no-cache \ ca-certificates \ diff --git a/29/dind/Dockerfile b/29/dind/Dockerfile index 945271623..079a5af61 100644 --- a/29/dind/Dockerfile +++ b/29/dind/Dockerfile @@ -40,7 +40,7 @@ RUN set -eux; \ ip6tables-restore \ ; do \ # "iptables-save" -> "iptables-legacy-save", "ip6tables" -> "ip6tables-legacy", etc. -# https://pkgs.alpinelinux.org/contents?branch=v3.22&name=iptables-legacy&arch=x86_64 +# https://pkgs.alpinelinux.org/contents?branch=v3.23&name=iptables-legacy&arch=x86_64 b="$(command -v "${f/tables/tables-legacy}")"; \ "$b" --version; \ ln -svT "$b" "/usr/local/sbin/.iptables-legacy/$f"; \ diff --git a/Dockerfile-cli.template b/Dockerfile-cli.template index 7d64c0b50..64b8fff34 100644 --- a/Dockerfile-cli.template +++ b/Dockerfile-cli.template @@ -1,5 +1,5 @@ {{ include "shared" -}} -FROM alpine:3.22 +FROM alpine:3.23 RUN apk add --no-cache \ ca-certificates \ diff --git a/Dockerfile-dind.template b/Dockerfile-dind.template index 69b276594..ee4ec1c69 100644 --- a/Dockerfile-dind.template +++ b/Dockerfile-dind.template @@ -35,7 +35,7 @@ RUN set -eux; \ ip6tables-restore \ ; do \ # "iptables-save" -> "iptables-legacy-save", "ip6tables" -> "ip6tables-legacy", etc. -# https://pkgs.alpinelinux.org/contents?branch=v3.22&name=iptables-legacy&arch=x86_64 +# https://pkgs.alpinelinux.org/contents?branch=v3.23&name=iptables-legacy&arch=x86_64 b="$(command -v "${f/tables/tables-legacy}")"; \ "$b" --version; \ ln -svT "$b" "/usr/local/sbin/.iptables-legacy/$f"; \