mirror of
https://github.com/overleaf/overleaf.git
synced 2024-12-28 22:52:08 +00:00
3235119302
Upgrade to Node 16 GitOrigin-RevId: 3db1ae57ffb02f8a2b9012ffbb3efecfc01d2b04
31 lines
1,005 B
Docker
31 lines
1,005 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:16.14.2 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 /
|
|
|
|
# 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
|
|
|
|
FROM base as app
|
|
|
|
COPY package.json package-lock.json /overleaf/
|
|
COPY services/clsi/package.json /overleaf/services/clsi/
|
|
COPY libraries/ /overleaf/libraries/
|
|
|
|
RUN cd /overleaf && 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"]
|