2020-02-10 16:10:44 +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-01-27 10:29:20 +00:00
|
|
|
FROM node:14.18.3 as base
|
2018-02-13 12:05:10 +00:00
|
|
|
|
2022-01-06 15:02:36 +00:00
|
|
|
WORKDIR /overleaf/services/clsi
|
|
|
|
COPY services/clsi/install_deps.sh /overleaf/services/clsi/
|
2020-02-10 16:10:44 +00:00
|
|
|
RUN chmod 0755 ./install_deps.sh && ./install_deps.sh
|
2022-01-06 15:02:36 +00:00
|
|
|
ENTRYPOINT ["/bin/sh", "/entrypoint.sh"]
|
|
|
|
COPY services/clsi/entrypoint.sh /
|
2020-02-10 16:10:44 +00:00
|
|
|
|
|
|
|
FROM base as app
|
2018-02-13 12:05:10 +00:00
|
|
|
|
2022-01-06 15:02:36 +00:00
|
|
|
COPY services/clsi/package*.json /overleaf/services/clsi/
|
2018-05-24 18:03:57 +00:00
|
|
|
|
2020-08-10 16:01:11 +00:00
|
|
|
RUN npm ci --quiet
|
2018-05-24 18:03:57 +00:00
|
|
|
|
2022-01-06 15:02:36 +00:00
|
|
|
COPY services/clsi /overleaf/services/clsi
|
2017-12-29 08:08:19 +00:00
|
|
|
|
2022-01-06 15:02:36 +00:00
|
|
|
FROM app
|
2021-10-06 08:44:05 +00:00
|
|
|
RUN mkdir -p cache compiles output \
|
|
|
|
&& chown node:node cache compiles output
|
2017-12-29 08:08:19 +00:00
|
|
|
|
2019-01-11 11:52:10 +00:00
|
|
|
CMD ["node", "--expose-gc", "app.js"]
|