mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
f3f0be5c56
Change directory layout in service containers GitOrigin-RevId: 09ff19db2a123cbf7691d51e9ce9be6eee264287
25 lines
679 B
Docker
25 lines
679 B
Docker
# 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.1 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/
|
|
|
|
RUN npm ci --quiet
|
|
|
|
COPY services/clsi /overleaf/services/clsi
|
|
|
|
FROM app
|
|
RUN mkdir -p cache compiles output \
|
|
&& chown node:node cache compiles output
|
|
|
|
CMD ["node", "--expose-gc", "app.js"]
|