Merge pull request #1232 from sanding0/main

chore: update registry mirror
This commit is contained in:
Yifei Zhang 2023-05-04 14:41:01 +08:00 committed by GitHub
commit 637660df2a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -8,7 +8,7 @@ WORKDIR /app
COPY package.json yarn.lock ./
RUN yarn config set registry 'https://registry.npm.taobao.org'
RUN yarn config set registry 'https://registry.npmmirror.com/'
RUN yarn install
FROM base AS builder