Update Go base image to version 1.25 in Dockerfile

This commit is contained in:
2025-09-27 16:27:55 +08:00
parent e117a2e708
commit c8eb519f7e

View File

@@ -12,7 +12,7 @@ COPY frontend/ ./
RUN npm run build
# 第二阶段构建Go应用
FROM golang:1.24-alpine AS backend-builder
FROM golang:1.25-alpine AS backend-builder
WORKDIR /app