From c46fa22203ab3b4cd5b565eb7a5d21fba6d03d77 Mon Sep 17 00:00:00 2001 From: "cnb.aUOqoEV4wEA" Date: Wed, 12 Nov 2025 22:39:01 +0800 Subject: [PATCH] =?UTF-8?q?=E7=BC=96=E8=BE=91=E6=96=87=E4=BB=B6=20cache.do?= =?UTF-8?q?ckerfile?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- cache.dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cache.dockerfile b/cache.dockerfile index 60277c07..e707b678 100644 --- a/cache.dockerfile +++ b/cache.dockerfile @@ -8,7 +8,7 @@ ENV TZ=Asia/Shanghai ENV NODE_PATH=/app/node_modules -RUN npm i -g corepack +RUN bash -c 'npm i -g corepack' WORKDIR /app @@ -16,7 +16,7 @@ WORKDIR /app COPY . /app # 安装依赖 -RUN pnpm install --frozen-lockfile +RUN bash -c 'pnpm install --frozen-lockfile' RUN echo "Builder Success 🎉"