From eb7d10a60f7fcc1a91ded894e5776730a7311a38 Mon Sep 17 00:00:00 2001 From: Vinlic Date: Thu, 11 Apr 2024 16:16:53 +0800 Subject: [PATCH] =?UTF-8?q?npm=E5=88=87=E6=8D=A2=E5=88=B0yarn=E9=99=8D?= =?UTF-8?q?=E4=BD=8E=E9=95=9C=E5=83=8F=E6=9E=84=E5=BB=BA=E8=80=97=E6=97=B6?= 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 a0b0aee..77f6e7d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,7 +4,7 @@ WORKDIR /app COPY . /app -RUN npm i --registry http://registry.npmmirror.com && npm run build +RUN yarn install --registry https://registry.npmmirror.com/ && yarn run build FROM node:lts-alpine