overleaf/services/contacts/Dockerfile

28 lines
780 B
Docker
Raw Normal View History

# 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
2018-05-23 06:01:07 -04:00
WORKDIR /overleaf/services/contacts
2018-05-23 06:01:07 -04:00
# 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/
COPY patches/ /overleaf/patches/
2018-05-23 06:01:07 -04:00
RUN cd /overleaf && npm ci --quiet
2018-05-23 06:01:07 -04:00
COPY services/contacts/ /overleaf/services/contacts/
2018-05-23 06:01:07 -04:00
FROM app
2018-05-23 06:01:07 -04:00
USER node
2019-01-10 04:18:01 -05:00
CMD ["node", "--expose-gc", "app.js"]