remove installation step from travis because it's in Dockerfile
This commit is contained in:
parent
25aa5c77f1
commit
f340d2715f
2 changed files with 3 additions and 1 deletions
|
@ -11,6 +11,8 @@ before_install:
|
||||||
- docker-compose up -d
|
- docker-compose up -d
|
||||||
- docker ps -a
|
- docker ps -a
|
||||||
|
|
||||||
|
install: true
|
||||||
|
|
||||||
before_script:
|
before_script:
|
||||||
# Install dependencies in the app container
|
# Install dependencies in the app container
|
||||||
- docker-compose exec -T app composer self-update
|
- docker-compose exec -T app composer self-update
|
||||||
|
|
|
@ -27,7 +27,7 @@ COPY package.json package-lock.json ./
|
||||||
RUN npm install --production
|
RUN npm install --production
|
||||||
RUN npm rebuild node-sass
|
RUN npm rebuild node-sass
|
||||||
RUN npm install pm2 -g
|
RUN npm install pm2 -g
|
||||||
RUN npm install local-ssl-proxy
|
# RUN npm install local-ssl-proxy
|
||||||
COPY index.js ecosystem.json ./
|
COPY index.js ecosystem.json ./
|
||||||
COPY --from=build /usr/src/app/dist ./dist
|
COPY --from=build /usr/src/app/dist ./dist
|
||||||
# for reg production
|
# for reg production
|
||||||
|
|
Loading…
Reference in a new issue