From ec69841284a798e71229dabfda675c608ad4bf76 Mon Sep 17 00:00:00 2001 From: Andrey Pokhilko Date: Mon, 10 Aug 2026 14:17:27 +0100 Subject: [PATCH] fix(docker): pin runtime base to alpine:3.24 (#740) Pins the runtime stage to the alpine 3.24 branch so builds pick up current musl/zlib/openssl fixes. Refs #738 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index b031685..d41549a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -38,7 +38,7 @@ WORKDIR /build/src RUN make build_go # Stage - runner -FROM --platform=${TARGETPLATFORM:-linux/amd64} alpine +FROM --platform=${TARGETPLATFORM:-linux/amd64} alpine:3.24 ARG TARGETPLATFORM ARG BUILDPLATFORM