mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
2469c93da4
upgrade node to 18.20.2 GitOrigin-RevId: e4ac30c740ced3885353f1472cf690eb5ec0ece1
31 lines
1,012 B
Docker
31 lines
1,012 B
Docker
# This file was auto-generated, do not edit it directly.
|
|
# Instead run bin/update_build_scripts from
|
|
# https://github.com/overleaf/internal/
|
|
|
|
FROM node:18.20.2 as base
|
|
|
|
WORKDIR /overleaf/services/filestore
|
|
COPY services/filestore/install_deps.sh /overleaf/services/filestore/
|
|
RUN chmod 0755 ./install_deps.sh && ./install_deps.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/filestore/package.json /overleaf/services/filestore/
|
|
COPY libraries/ /overleaf/libraries/
|
|
COPY patches/ /overleaf/patches/
|
|
|
|
RUN cd /overleaf && npm ci --quiet
|
|
|
|
COPY services/filestore/ /overleaf/services/filestore/
|
|
|
|
FROM app
|
|
RUN mkdir -p uploads user_files template_files \
|
|
&& chown node:node uploads user_files template_files
|
|
USER node
|
|
|
|
CMD ["node", "--expose-gc", "app.js"]
|