2019-12-16 17:09:38 +00:00
|
|
|
# This file was auto-generated, do not edit it directly.
|
|
|
|
# Instead run bin/update_build_scripts from
|
2023-02-21 09:06:58 +00:00
|
|
|
# https://github.com/overleaf/internal/
|
2019-12-16 17:09:38 +00:00
|
|
|
|
2023-09-22 10:35:18 +00:00
|
|
|
FROM node:18.18.0 as base
|
2018-01-16 12:27:36 +00:00
|
|
|
|
2022-01-06 15:02:36 +00:00
|
|
|
WORKDIR /overleaf/services/filestore
|
|
|
|
COPY services/filestore/install_deps.sh /overleaf/services/filestore/
|
2020-02-10 16:10:42 +00:00
|
|
|
RUN chmod 0755 ./install_deps.sh && ./install_deps.sh
|
|
|
|
|
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:42 +00:00
|
|
|
FROM base as app
|
2018-01-16 12:27:36 +00:00
|
|
|
|
2022-02-07 11:46:51 +00:00
|
|
|
COPY package.json package-lock.json /overleaf/
|
|
|
|
COPY services/filestore/package.json /overleaf/services/filestore/
|
|
|
|
COPY libraries/ /overleaf/libraries/
|
2023-05-04 08:51:40 +00:00
|
|
|
COPY patches/ /overleaf/patches/
|
2018-05-18 12:55:33 +00:00
|
|
|
|
2022-02-07 11:46:51 +00:00
|
|
|
RUN cd /overleaf && npm ci --quiet
|
2018-05-18 12:55:33 +00:00
|
|
|
|
2022-02-07 11:46:51 +00:00
|
|
|
COPY services/filestore/ /overleaf/services/filestore/
|
2018-03-23 16:14:30 +00:00
|
|
|
|
2022-01-06 15:02:36 +00:00
|
|
|
FROM app
|
2020-02-10 16:10:42 +00:00
|
|
|
RUN mkdir -p uploads user_files template_files \
|
2023-02-21 09:06:58 +00:00
|
|
|
&& chown node:node uploads user_files template_files
|
2018-03-23 17:21:15 +00:00
|
|
|
USER node
|
2018-01-16 12:27:36 +00:00
|
|
|
|
2018-12-05 10:53:11 +00:00
|
|
|
CMD ["node", "--expose-gc", "app.js"]
|