Merge pull request #109 from Awuqing/dependabot/docker/container-images-d0276e9342

chore(deps): bump the container-images group across 1 directory with 3 updates
This commit is contained in:
Wu Qing
2026-08-17 17:56:04 +08:00
committed by GitHub

View File

@@ -10,7 +10,7 @@ ARG USE_CHINA_MIRROR=false
# ---- Stage 1: Build frontend ----
FROM node:24-alpine AS web-builder
FROM node:26-alpine AS web-builder
ARG USE_CHINA_MIRROR
# 国内镜像npm 使用淘宝源
@@ -26,7 +26,7 @@ RUN npm run build
# ---- Stage 2: Build backend ----
FROM golang:1.25-alpine AS server-builder
FROM golang:1.26-alpine AS server-builder
ARG USE_CHINA_MIRROR
ARG VERSION=dev
@@ -43,7 +43,7 @@ RUN CGO_ENABLED=0 go build -trimpath -ldflags="-s -w -X main.version=${VERSION}"
# ---- Stage 3: Production image ----
FROM alpine:3.21
FROM alpine:3.24
ARG USE_CHINA_MIRROR
# 国内镜像Alpine apk 使用阿里云源