Update Node base images to 22 LTS

This commit is contained in:
yeasy
2026-05-01 10:24:43 +00:00
parent e6527ae769
commit 7e3f90b522
10 changed files with 22 additions and 22 deletions
+1 -1
View File
@@ -178,7 +178,7 @@ ADD app.tar.gz /app/
```docker
## 构建阶段
FROM node:20 AS builder
FROM node:22 AS builder
WORKDIR /app
COPY package*.json ./
RUN npm install