From 5d9cc5e992477f49d77e9c8163d3c394650d282a Mon Sep 17 00:00:00 2001 From: adamthiede Date: Sun, 14 Jun 2026 10:27:30 -0500 Subject: [PATCH] update alpine image to 3.24 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 9cb1010..ff622df 100644 --- a/Dockerfile +++ b/Dockerfile @@ -9,7 +9,7 @@ FROM golang:alpine AS builder # flag -ldflags "-s -w" produces a smaller executable RUN go install -ldflags "-s -w" -v github.com/a8m/envsubst/cmd/envsubst@v1.4.3 -FROM alpine:3.22 +FROM alpine:3.24 COPY --from=builder /go/bin/envsubst /usr/bin/envsubst