Skip to content

Commit 1e415ac

Browse files
author
NPM Mirror Bot
committed
1 parent 664ac88 commit 1e415ac

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

image/demo/buildkit/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ WORKDIR /app
44

55
COPY 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

1010
COPY src /app/src

image/multistage-builds/laravel.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ FROM node:alpine as frontend
6161
COPY package.json /app/
6262
6363
RUN set -x ; cd /app \
64-
&& npm install --registry=https://registry.npm.taobao.org
64+
&& npm install --registry=https://registry.npmmirror.com
6565
6666
COPY webpack.mix.js webpack.config.js tailwind.config.js /app/
6767
COPY resources/ /app/resources/
@@ -179,7 +179,7 @@ FROM node:alpine as frontend
179179
COPY package.json /app/
180180
181181
RUN set -x ; cd /app \
182-
&& npm install --registry=https://registry.npm.taobao.org
182+
&& npm install --registry=https://registry.npmmirror.com
183183
184184
COPY webpack.mix.js webpack.config.js tailwind.config.js /app/
185185
COPY resources/ /app/resources/

0 commit comments

Comments
 (0)