mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
update build scripts
This commit is contained in:
parent
43b1fe4b68
commit
c80c38b7a9
3 changed files with 7 additions and 6 deletions
|
@ -4,6 +4,8 @@ COPY ./ /app
|
||||||
|
|
||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
|
|
||||||
|
RUN rm -rf node_modules/* && make clean
|
||||||
|
|
||||||
RUN npm install
|
RUN npm install
|
||||||
|
|
||||||
|
|
||||||
|
@ -20,8 +22,7 @@ WORKDIR /app
|
||||||
# The app will run as the 'app' user, and so not have write permissions
|
# The app will run as the 'app' user, and so not have write permissions
|
||||||
# on any files it doesn't need.
|
# on any files it doesn't need.
|
||||||
RUN useradd --user-group --create-home --home-dir /app --shell /bin/false app
|
RUN useradd --user-group --create-home --home-dir /app --shell /bin/false app
|
||||||
|
RUN ./install_deps.sh
|
||||||
RUN [ -e ./install_deps.sh ] && ./install_deps.sh
|
|
||||||
ENTRYPOINT ["/bin/sh", "entrypoint.sh"]
|
ENTRYPOINT ["/bin/sh", "entrypoint.sh"]
|
||||||
|
|
||||||
CMD ["node","app.js"]
|
CMD ["node","app.js"]
|
||||||
|
|
|
@ -8,7 +8,7 @@ version: "2"
|
||||||
services:
|
services:
|
||||||
test_unit:
|
test_unit:
|
||||||
image: quay.io/sharelatex/$PROJECT_NAME:$BRANCH_NAME-$BUILD_NUMBER
|
image: quay.io/sharelatex/$PROJECT_NAME:$BRANCH_NAME-$BUILD_NUMBER
|
||||||
entrypoint: npm run test:unit:_run
|
command: npm run test:unit:_run
|
||||||
|
|
||||||
test_acceptance:
|
test_acceptance:
|
||||||
build: .
|
build: .
|
||||||
|
@ -22,7 +22,7 @@ services:
|
||||||
depends_on:
|
depends_on:
|
||||||
- redis
|
- redis
|
||||||
- mongo
|
- mongo
|
||||||
entrypoint: npm run test:acceptance:_run
|
command: npm run test:acceptance:_run
|
||||||
|
|
||||||
redis:
|
redis:
|
||||||
image: redis
|
image: redis
|
||||||
|
|
|
@ -11,7 +11,7 @@ services:
|
||||||
volumes:
|
volumes:
|
||||||
- .:/app
|
- .:/app
|
||||||
working_dir: /app
|
working_dir: /app
|
||||||
entrypoint: npm run test:unit
|
command: npm run test:unit
|
||||||
|
|
||||||
test_acceptance:
|
test_acceptance:
|
||||||
build: .
|
build: .
|
||||||
|
@ -27,7 +27,7 @@ services:
|
||||||
depends_on:
|
depends_on:
|
||||||
- redis
|
- redis
|
||||||
- mongo
|
- mongo
|
||||||
entrypoint: npm run test:acceptance
|
command: npm run test:acceptance
|
||||||
|
|
||||||
redis:
|
redis:
|
||||||
image: redis
|
image: redis
|
||||||
|
|
Loading…
Reference in a new issue