Update Go builder image to 1.25 on Alpine 3.22

Fix builder image version in Dockerfile.

Updates the Go builder image reference to golang:1.25-alpine3.22 to ensure the image can be pulled successfully during the build process.

No application code changes.
This commit is contained in:
whiteym-au 2026-07-10 16:28:33 +09:30 committed by GitHub
parent fceb94000d
commit e8c9f80b46
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -1,5 +1,5 @@
# Build stage
FROM --platform=${BUILDPLATFORM:-linux/amd64} golang:1.21-alpine3.19 AS builder
FROM --platform=${BUILDPLATFORM:-linux/amd64} golang:1.25-alpine3.22 AS builder
LABEL maintainer="Khanh Ngo <k@ndk.name>"
ARG BUILDPLATFORM