Compare commits

...

1 Commits

Author SHA1 Message Date
007e978c55 Update base image to Alpine 3.19
Signed-off-by: Kevin Decherf <kevin@kdecherf.com>
2025-07-17 17:22:11 +02:00

View File

@ -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.18
FROM alpine:3.19
COPY --from=builder /go/bin/envsubst /usr/bin/envsubst