From fde413dcb2b7997d368cd742f2cbc70093b3da24 Mon Sep 17 00:00:00 2001 From: lixin Date: Fri, 10 Jan 2025 14:07:22 +0800 Subject: [PATCH] =?UTF-8?q?build(Dockerfile):=20=E6=9B=B4=E6=96=B0?= =?UTF-8?q?=E5=9F=BA=E7=A1=80=E9=95=9C=E5=83=8F=E7=89=88=E6=9C=AC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 将 Node.js 基础镜像从 lts-alpine 更新为 22-alpine - 此更新可能会提高应用程序的性能和安全性 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 8a0f299..ee0963e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM node:lts-alpine +FROM node:22-alpine WORKDIR /app