From e1fafcc31f6f015b661604390a4efb22adbaddc4 Mon Sep 17 00:00:00 2001 From: Kevin Decherf Date: Thu, 17 Jul 2025 17:21:44 +0200 Subject: [PATCH 1/3] Update envsubst to v1.4.3 Signed-off-by: Kevin Decherf --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 7c83621..203ad5b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,7 +7,7 @@ FROM golang:alpine as builder # envsubst from gettext can not replace env vars with default values # this package is not available for ARM32 and we have to build it from source code # flag -ldflags "-s -w" produces a smaller executable -RUN go install -ldflags "-s -w" -v github.com/a8m/envsubst/cmd/envsubst@v1.3.0 +RUN go install -ldflags "-s -w" -v github.com/a8m/envsubst/cmd/envsubst@v1.4.3 FROM alpine:3.18 From 6379d9b90fbbc09321554390e1408608c0bdbc06 Mon Sep 17 00:00:00 2001 From: Kevin Decherf Date: Thu, 17 Jul 2025 17:22:11 +0200 Subject: [PATCH 2/3] 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 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 203ad5b..e971cfd 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.18 +FROM alpine:3.19 COPY --from=builder /go/bin/envsubst /usr/bin/envsubst From 0e1111433655df9cb3b6f51fac86ccc2b83dcd08 Mon Sep 17 00:00:00 2001 From: Kevin Decherf Date: Fri, 18 Jul 2025 01:04:02 +0200 Subject: [PATCH 3/3] Update composer to 2.8.10 Signed-off-by: Kevin Decherf --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index e971cfd..e28ead4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -ARG COMPOSER_VERSION=2.5.8 +ARG COMPOSER_VERSION=2.8.10 FROM composer:$COMPOSER_VERSION as composer