From 1b14faf73b8631912b6b73a16a5a4ef280cee642 Mon Sep 17 00:00:00 2001 From: hzm <934585316@qq.com> Date: Sat, 7 Feb 2026 00:40:46 +0800 Subject: [PATCH] =?UTF-8?q?feat=EF=BC=9A=E4=BF=AE=E6=94=B9=20docker=20node?= =?UTF-8?q?=20=E7=89=88=E6=9C=AC=E4=BB=A5=E5=85=BC=E5=AE=B9=20next16?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 3fd4382..912f7e4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,7 +6,7 @@ RUN npm install --legacy-peer-deps COPY . . RUN npx next build # ===== 运行阶段 ===== -FROM node:18-bullseye AS runner +FROM node:22-bullseye AS runner WORKDIR /app ENV NODE_ENV=production COPY --from=builder /app/package.json ./