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
This commit is contained in:
Andrey Pokhilko
2026-08-10 14:17:27 +01:00
committed by GitHub
parent 25122a48ba
commit ec69841284
+1 -1
View File
@@ -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