overleaf/services/document-updater/Dockerfile

28 lines
478 B
Text
Raw Normal View History

2020-02-21 14:06:58 +00:00
# This file was auto-generated, do not edit it directly.
# Instead run bin/update_build_scripts from
# https://github.com/sharelatex/sharelatex-dev-environment
# Version: 1.3.5
FROM node:10.19.0 as base
2018-05-23 12:52:20 +00:00
WORKDIR /app
2020-02-21 14:06:58 +00:00
FROM base as app
2018-05-23 12:52:20 +00:00
#wildcard as some files may not be in all repos
COPY package*.json npm-shrink*.json /app/
RUN npm install --quiet
COPY . /app
RUN npm run compile:all
2020-02-21 14:06:58 +00:00
FROM base
2018-05-23 12:52:20 +00:00
COPY --from=app /app /app
USER node
2019-01-04 09:24:09 +00:00
CMD ["node", "--expose-gc", "app.js"]