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