2019-12-16 12:09:38 -05: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 08:43:07 -05:00
|
|
|
FROM node:14.18.1 as base
|
2018-01-16 07:27:36 -05:00
|
|
|
|
2022-01-06 10:02:36 -05:00
|
|
|
WORKDIR /overleaf/services/filestore
|
|
|
|
COPY services/filestore/install_deps.sh /overleaf/services/filestore/
|
2020-02-10 11:10:42 -05:00
|
|
|
RUN chmod 0755 ./install_deps.sh && ./install_deps.sh
|
|
|
|
|
|
|
|
FROM base as app
|
2018-01-16 07:27:36 -05:00
|
|
|
|
2022-01-06 10:02:36 -05:00
|
|
|
COPY services/filestore/package*.json /overleaf/services/filestore/
|
2018-05-18 08:55:33 -04:00
|
|
|
|
2020-06-03 04:59:54 -04:00
|
|
|
RUN npm ci --quiet
|
2018-05-18 08:55:33 -04:00
|
|
|
|
2022-01-06 10:02:36 -05:00
|
|
|
COPY services/filestore /overleaf/services/filestore
|
2018-03-23 12:14:30 -04:00
|
|
|
|
2022-01-06 10:02:36 -05:00
|
|
|
FROM app
|
2020-02-10 11:10:42 -05:00
|
|
|
RUN mkdir -p uploads user_files template_files \
|
|
|
|
&& chown node:node uploads user_files template_files
|
2018-03-23 13:21:15 -04:00
|
|
|
USER node
|
2018-01-16 07:27:36 -05:00
|
|
|
|
2018-12-05 05:53:11 -05:00
|
|
|
CMD ["node", "--expose-gc", "app.js"]
|