fix: 🐛 更改镜像node版本

This commit is contained in:
GoCo 2025-07-22 17:01:30 +08:00
parent e2443f4def
commit 8950c82884

View File

@ -1,5 +1,5 @@
# 使用 node 构建阶段
FROM node:18 AS builder
FROM node:22 AS builder
WORKDIR /app
COPY . .
RUN npm install && npm run build