From 486d9822f6909cb1693a84d3da596ff2c429e877 Mon Sep 17 00:00:00 2001 From: daniel Date: Sun, 14 Jan 2024 01:05:57 +0800 Subject: [PATCH] =?UTF-8?q?ci:=20=F0=9F=8E=A1=20=E8=B0=83=E6=95=B4dockerfi?= =?UTF-8?q?le?= 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 419cb90..6bdf6b9 100644 --- a/dockerfile +++ b/dockerfile @@ -5,7 +5,7 @@ FROM node:18-alpine WORKDIR /app # 非依赖变更缓存改层 -COPY package.json pnpm-lock.yaml patches .npmrc ./ +COPY package.json pnpm-lock.yaml patches/* .npmrc ./ # 安装应用程序依赖项 RUN npm install -g pnpm && pnpm install --production&& pnpm store prune && npm uninstall pnpm -g