From 55d088cfe011c7475015513e25e97fa8e5418698 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=E8=8F=8C?= Date: Sat, 4 Jul 2026 00:50:21 +0800 Subject: [PATCH] pnpm skip --- frontend/.npmrc | 1 + frontend/Dockerfile | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) create mode 100644 frontend/.npmrc diff --git a/frontend/.npmrc b/frontend/.npmrc new file mode 100644 index 0000000..00f3ab7 --- /dev/null +++ b/frontend/.npmrc @@ -0,0 +1 @@ +minimum-release-age=0 diff --git a/frontend/Dockerfile b/frontend/Dockerfile index 558fa1c..6290370 100644 --- a/frontend/Dockerfile +++ b/frontend/Dockerfile @@ -4,7 +4,7 @@ RUN corepack enable && corepack prepare pnpm@latest --activate WORKDIR /app COPY pnpm-lock.yaml package.json ./ -RUN pnpm install --frozen-lockfile --config.minimumReleaseAge=0 +RUN pnpm install --frozen-lockfile COPY . . RUN pnpm build