mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-05-29 20:11:32 +02:00
* Run `bin/update_node 20.18.2 22.15.0` * Remove expects on `fetchMock.callHistory.done()` to fix tests: are they necessary? * Set node version to `22.x` in linked-url-proxy * Increase test timeout to 30s in `github-sync`, Add waiting steps * Define `navigator.onLine` in tests setup GitOrigin-RevId: 75eb556e9f51b665e57497a0879b6915d14069ce
28 lines
805 B
Docker
28 lines
805 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:22.15.0 AS base
|
|
|
|
WORKDIR /overleaf/services/notifications
|
|
|
|
# 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/notifications/package.json /overleaf/services/notifications/
|
|
COPY libraries/ /overleaf/libraries/
|
|
COPY patches/ /overleaf/patches/
|
|
|
|
RUN cd /overleaf && npm ci --quiet
|
|
|
|
COPY services/notifications/ /overleaf/services/notifications/
|
|
|
|
FROM app
|
|
USER node
|
|
|
|
CMD ["node", "--expose-gc", "app.js"]
|