mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-31 21:21:03 -04:00
e7531eb047
Upgrade node to v16.16.0 GitOrigin-RevId: 6bc6d63aa4af1940649f1eb5966f182250ecac22
26 lines
766 B
Docker
26 lines
766 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.16.0 as base
|
|
|
|
WORKDIR /overleaf/services/contacts
|
|
|
|
# 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/contacts/package.json /overleaf/services/contacts/
|
|
COPY libraries/ /overleaf/libraries/
|
|
|
|
RUN cd /overleaf && npm ci --quiet
|
|
|
|
COPY services/contacts/ /overleaf/services/contacts/
|
|
|
|
FROM app
|
|
USER node
|
|
|
|
CMD ["node", "--expose-gc", "app.js"]
|