fix: upgrade Docker base image to golang:1.25-alpine for go.mod compatibility

This commit is contained in:
2026-06-20 22:57:08 +08:00
parent 6652cd2b88
commit 9bfe1ec120
+1 -1
View File
@@ -1,5 +1,5 @@
# Build stage
FROM golang:1.24-alpine AS builder
FROM golang:1.25-alpine AS builder
WORKDIR /app
COPY go.mod go.sum ./
RUN go mod download