2020-01-13 13:20:38 -05:00
|
|
|
# This file was auto-generated, do not edit it directly.
|
|
|
|
# Instead run bin/update_build_scripts from
|
2023-02-21 04:06:58 -05:00
|
|
|
# https://github.com/overleaf/internal/
|
2020-01-13 13:20:38 -05:00
|
|
|
|
2024-02-19 06:46:46 -05:00
|
|
|
FROM node:18.19.1 as base
|
2018-05-23 09:08:34 -04:00
|
|
|
|
2022-01-06 10:02:36 -05:00
|
|
|
WORKDIR /overleaf/services/notifications
|
2018-05-23 09:08:34 -04:00
|
|
|
|
2022-02-07 06:46:51 -05: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
|
|
|
|
|
2020-02-10 11:10:39 -05:00
|
|
|
FROM base as app
|
|
|
|
|
2022-02-07 06:46:51 -05:00
|
|
|
COPY package.json package-lock.json /overleaf/
|
|
|
|
COPY services/notifications/package.json /overleaf/services/notifications/
|
|
|
|
COPY libraries/ /overleaf/libraries/
|
2023-05-04 04:51:40 -04:00
|
|
|
COPY patches/ /overleaf/patches/
|
2018-05-23 09:08:34 -04:00
|
|
|
|
2022-02-07 06:46:51 -05:00
|
|
|
RUN cd /overleaf && npm ci --quiet
|
2018-05-23 09:08:34 -04:00
|
|
|
|
2022-02-07 06:46:51 -05:00
|
|
|
COPY services/notifications/ /overleaf/services/notifications/
|
2018-05-23 09:08:34 -04:00
|
|
|
|
2022-01-06 10:02:36 -05:00
|
|
|
FROM app
|
2018-05-23 09:08:34 -04:00
|
|
|
USER node
|
|
|
|
|
2019-01-09 10:22:17 -05:00
|
|
|
CMD ["node", "--expose-gc", "app.js"]
|