golang 1.24-> 1.25
node 20 -> node 24
具体提升请查看官方文档

Co-authored-by: yangjianbo <yangjianbo@leagsoft.com>
This commit is contained in:
程序猿MT
2025-12-27 13:56:14 +08:00
committed by GitHub
parent 3f92a43170
commit 88be981afc

View File

@@ -9,7 +9,7 @@
# -----------------------------------------------------------------------------
# Stage 1: Frontend Builder
# -----------------------------------------------------------------------------
FROM node:20-alpine AS frontend-builder
FROM node:24-alpine AS frontend-builder
WORKDIR /app/frontend
@@ -24,7 +24,7 @@ RUN npm run build
# -----------------------------------------------------------------------------
# Stage 2: Backend Builder
# -----------------------------------------------------------------------------
FROM golang:1.24-alpine AS backend-builder
FROM golang:1.25-alpine AS backend-builder
# Build arguments for version info (set by CI)
ARG VERSION=docker