From 360e0e86523f13644da1cfaad6687a2333d1b8d8 Mon Sep 17 00:00:00 2001 From: Echo <1711788888@qq.com> Date: Thu, 5 Mar 2026 22:14:32 +0800 Subject: [PATCH] =?UTF-8?q?:art:=20=E5=8E=BB=E9=99=A4=20--frozen-lockfile?= =?UTF-8?q?=20=E5=8F=82=E6=95=B0?= 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 58bc22b..24fcee9 100644 --- a/Dockerfile +++ b/Dockerfile @@ -12,7 +12,7 @@ FROM node:24-alpine AS frontend-builder WORKDIR /app/admin-ui # 单独复制依赖文件,利用层缓存:只有依赖变化时才重新安装 COPY admin-ui/package.json admin-ui/bun.lock* ./ -RUN npm install -g pnpm && pnpm install --frozen-lockfile +RUN npm install -g pnpm && pnpm install --no-frozen-lockfile COPY admin-ui ./ RUN pnpm build