File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ WORKDIR /app
44
55COPY package.json /app/
66
7- RUN npm i --registry=https://registry.npm.taobao.org \
7+ RUN npm i --registry=https://registry.npmmirror.com \
88 && rm -rf ~/.npm
99
1010COPY src /app/src
Original file line number Diff line number Diff line change @@ -61,7 +61,7 @@ FROM node:alpine as frontend
6161COPY package.json /app/
6262
6363RUN set -x ; cd /app \
64- && npm install --registry=https://registry.npm.taobao.org
64+ && npm install --registry=https://registry.npmmirror.com
6565
6666COPY webpack.mix.js webpack.config.js tailwind.config.js /app/
6767COPY resources/ /app/resources/
@@ -179,7 +179,7 @@ FROM node:alpine as frontend
179179COPY package.json /app/
180180
181181RUN set -x ; cd /app \
182- && npm install --registry=https://registry.npm.taobao.org
182+ && npm install --registry=https://registry.npmmirror.com
183183
184184COPY webpack.mix.js webpack.config.js tailwind.config.js /app/
185185COPY resources/ /app/resources/
You can’t perform that action at this time.
0 commit comments