mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
ed0acd8e58
Upgrade to node 18 GitOrigin-RevId: 1b25d20a8987950a72a7bf966a825794de4ad960
26 lines
782 B
Docker
26 lines
782 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.16.0 as base
|
|
|
|
WORKDIR /overleaf/services/project-history
|
|
|
|
# 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/project-history/package.json /overleaf/services/project-history/
|
|
COPY libraries/ /overleaf/libraries/
|
|
|
|
RUN cd /overleaf && npm ci --quiet
|
|
|
|
COPY services/project-history/ /overleaf/services/project-history/
|
|
|
|
FROM app
|
|
USER node
|
|
|
|
CMD ["node", "--expose-gc", "app.js"]
|