2020-02-10 16:10:43 +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
|
|
|
|
|
2021-11-18 13:43:07 +00:00
|
|
|
FROM node:14.18.1 as base
|
2018-05-23 10:27:31 +00:00
|
|
|
|
2022-01-06 15:02:36 +00:00
|
|
|
WORKDIR /overleaf/services/docstore
|
2018-05-23 10:27:31 +00:00
|
|
|
|
2020-02-10 16:10:43 +00:00
|
|
|
FROM base as app
|
|
|
|
|
2022-01-06 15:02:36 +00:00
|
|
|
COPY services/docstore/package*.json /overleaf/services/docstore/
|
2018-05-23 10:27:31 +00:00
|
|
|
|
2020-05-28 13:19:48 +00:00
|
|
|
RUN npm ci --quiet
|
2018-05-23 10:27:31 +00:00
|
|
|
|
2022-01-06 15:02:36 +00:00
|
|
|
COPY services/docstore /overleaf/services/docstore
|
2018-05-23 10:27:31 +00:00
|
|
|
|
2022-01-06 15:02:36 +00:00
|
|
|
FROM app
|
2018-05-23 10:27:31 +00:00
|
|
|
USER node
|
|
|
|
|
2018-12-10 21:42:14 +00:00
|
|
|
CMD ["node", "--expose-gc", "app.js"]
|