overleaf/services/document-updater/Dockerfile

26 lines
432 B
Text
Raw Normal View History

2020-01-23 09:05:57 +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
FROM node:10.19.0 as base
2018-05-23 12:52:20 +00:00
WORKDIR /app
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/
2020-05-06 10:03:41 +00:00
RUN npm ci --quiet
2018-05-23 12:52:20 +00:00
COPY . /app
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"]