2020-01-27 11:17:52 +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
|
|
|
|
|
2022-04-04 19:20:47 +00:00
|
|
|
FROM gcr.io/overleaf-ops/node:14.18.3 as base
|
2018-05-24 11:02:27 +00:00
|
|
|
|
2022-01-06 15:02:36 +00:00
|
|
|
WORKDIR /overleaf/services/track-changes
|
2018-05-24 11:02:27 +00:00
|
|
|
|
2022-02-07 11:46:51 +00:00
|
|
|
# Google Cloud Storage needs a writable $HOME/.config for resumable uploads
|
|
|
|
# (see https://googleapis.dev/nodejs/storage/latest/File.html#createWriteStream)
|
|
|
|
RUN mkdir /home/node/.config && chown node:node /home/node/.config
|
|
|
|
|
2020-02-10 16:10:40 +00:00
|
|
|
FROM base as app
|
|
|
|
|
2022-02-07 11:46:51 +00:00
|
|
|
COPY package.json package-lock.json /overleaf/
|
|
|
|
COPY services/track-changes/package.json /overleaf/services/track-changes/
|
|
|
|
COPY libraries/ /overleaf/libraries/
|
2018-05-24 11:02:27 +00:00
|
|
|
|
2022-02-07 11:46:51 +00:00
|
|
|
RUN cd /overleaf && npm ci --quiet
|
2018-05-24 11:02:27 +00:00
|
|
|
|
2022-02-07 11:46:51 +00:00
|
|
|
COPY services/track-changes/ /overleaf/services/track-changes/
|
2018-05-24 11:02:27 +00:00
|
|
|
|
2022-01-06 15:02:36 +00:00
|
|
|
FROM app
|
2018-05-24 11:02:27 +00:00
|
|
|
USER node
|
|
|
|
|
2019-01-08 16:15:04 +00:00
|
|
|
CMD ["node", "--expose-gc", "app.js"]
|