mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
a480df8a89
Upgrade Node from `18.20.2` to `20.17.0` GitOrigin-RevId: 0ba9b0921fc246a97d3da0aad7d48635c0e24ae8
27 lines
820 B
Docker
27 lines
820 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:20.18.0 AS base
|
|
|
|
WORKDIR /overleaf/services/document-updater
|
|
|
|
# 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/document-updater/package.json /overleaf/services/document-updater/
|
|
COPY libraries/ /overleaf/libraries/
|
|
COPY patches/ /overleaf/patches/
|
|
|
|
RUN cd /overleaf && npm ci --quiet
|
|
|
|
COPY services/document-updater/ /overleaf/services/document-updater/
|
|
|
|
FROM app
|
|
USER node
|
|
|
|
CMD ["node", "--expose-gc", "app.js"]
|