From e8c9f80b464f7a45fbfcff91d3c23ce2911f31e1 Mon Sep 17 00:00:00 2001 From: whiteym-au Date: Fri, 10 Jul 2026 16:28:33 +0930 Subject: [PATCH] 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. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 0a96884..47de3b9 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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 " ARG BUILDPLATFORM