From 743d75ebbc4e9ae36d34f0e71c5ffc24214b5792 Mon Sep 17 00:00:00 2001 From: TakumiMukaiyama Date: Mon, 13 Apr 2026 12:30:27 +0900 Subject: [PATCH] chore: update base image from alpine:3.14 (EOL) to alpine:3.23 Alpine 3.14 reached EOL in November 2024. Update to 3.23 (latest stable, EOL: November 2027) to ensure continued security patch coverage. Closes #211 Co-Authored-By: Claude Sonnet 4.6 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index ac09509..002be9d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,7 +4,7 @@ WORKDIR /var/app RUN go mod tidy RUN CGO_ENABLED=0 go build -o app . -FROM alpine:3.21 +FROM alpine:3.23 LABEL org.opencontainers.image.source=https://github.com/trstringer/manual-approval RUN apk update && apk add ca-certificates COPY --from=builder /var/app/app /var/app/app