@@ -1,6 +1,7 @@
FROM node:16 as builder
WORKDIR /code
-RUN yarn config set registry https://registry.npm.taobao.org/
+RUN yarn config set registry https://repo.nju.edu.cn/repository/npm/
+RUN yarn config set network-timeout 60000
ADD package.json /code
ADD yarn.lock /code
RUN yarn install