feat: update Dockerfile to use Node.js 20 and add build dependencies

This commit is contained in:
Lan
2026-01-24 10:57:32 +08:00
parent 9dd5fa84b9
commit 8192c1215c
+2 -2
View File
@@ -1,7 +1,7 @@
# 第一阶段:构建前端主题
FROM node:18-alpine AS frontend-builder
FROM node:20-alpine AS frontend-builder
RUN apk add --no-cache git
RUN apk add --no-cache git python3 make g++
WORKDIR /build