1
0
mirror of https://github.com/wallabag/docker synced 2025-12-12 17:26:25 +00:00

Update base image to Alpine 3.19

Security support on Alpine 3.18 ended on 09 May 2025.
Moving to 3.19 gives us new updates until Nov 2025 while keeping PHP 8.1

Signed-off-by: Kevin Decherf <kevin@kdecherf.com>
This commit is contained in:
Kevin Decherf
2025-07-17 17:22:11 +02:00
parent e1fafcc31f
commit 6379d9b90f

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