Merge pull request #2665 from haoyuqi/master
laravel-echo-server add change source
This commit is contained in:
commit
493a058d22
|
@ -1046,6 +1046,8 @@ services:
|
|||
laravel-echo-server:
|
||||
build:
|
||||
context: ./laravel-echo-server
|
||||
args:
|
||||
- CHANGE_SOURCE=${CHANGE_SOURCE}
|
||||
volumes:
|
||||
- ./laravel-echo-server/laravel-echo-server.json:/app/laravel-echo-server.json:ro
|
||||
ports:
|
||||
|
|
|
@ -7,6 +7,14 @@ WORKDIR /usr/src/app
|
|||
# Install app dependencies
|
||||
COPY package.json /usr/src/app/
|
||||
|
||||
# If you're in China, or you need to change sources, will be set CHANGE_SOURCE to true in .env.
|
||||
|
||||
ARG CHANGE_SOURCE=false
|
||||
RUN if [ ${CHANGE_SOURCE} = true ]; then \
|
||||
# Change application source from dl-cdn.alpinelinux.org to aliyun source
|
||||
sed -i 's/dl-cdn.alpinelinux.org/mirrors.aliyun.com/' /etc/apk/repositories \
|
||||
;fi
|
||||
|
||||
RUN apk add --update \
|
||||
python \
|
||||
python-dev \
|
||||
|
|
Loading…
Reference in New Issue