Azure 2 年 前
コミット
1bb87a9d1d
1 ファイル変更1 行追加1 行削除
  1. 1 1
      Dockerfile

+ 1 - 1
Dockerfile

@@ -1,6 +1,6 @@
 FROM node:16-alpine as builder
 WORKDIR /code
-RUN yarn config set registry https://registry.npm.taobao.org/
+RUN yarn config set registry https://registry.npmmirror.com
 ADD package.json /code
 ADD yarn.lock /code
 RUN yarn install