overleaf/services/clsi/Dockerfile

26 lines
679 B
Docker
Raw Normal View History

# This file was auto-generated, do not edit it directly.
# Instead run bin/update_build_scripts from
# https://github.com/sharelatex/sharelatex-dev-environment
FROM node:14.18.3 as base
WORKDIR /overleaf/services/clsi
COPY services/clsi/install_deps.sh /overleaf/services/clsi/
RUN chmod 0755 ./install_deps.sh && ./install_deps.sh
ENTRYPOINT ["/bin/sh", "/entrypoint.sh"]
COPY services/clsi/entrypoint.sh /
FROM base as app
COPY services/clsi/package*.json /overleaf/services/clsi/
2018-05-24 14:03:57 -04:00
2020-08-10 12:01:11 -04:00
RUN npm ci --quiet
2018-05-24 14:03:57 -04:00
COPY services/clsi /overleaf/services/clsi
FROM app
RUN mkdir -p cache compiles output \
&& chown node:node cache compiles output
2019-01-11 06:52:10 -05:00
CMD ["node", "--expose-gc", "app.js"]