# This file was auto-generated, do not edit it directly. # Instead run bin/update_build_scripts from # https://github.com/overleaf/internal/ FROM node:24.14.1 AS base WORKDIR /overleaf/services/chat # 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 libraries/fetch-utils/package.json /overleaf/libraries/fetch-utils/package.json COPY libraries/logger/package.json /overleaf/libraries/logger/package.json COPY libraries/metrics/package.json /overleaf/libraries/metrics/package.json COPY libraries/mongo-utils/package.json /overleaf/libraries/mongo-utils/package.json COPY libraries/o-error/package.json /overleaf/libraries/o-error/package.json COPY libraries/promise-utils/package.json /overleaf/libraries/promise-utils/package.json COPY libraries/settings/package.json /overleaf/libraries/settings/package.json COPY services/chat/package.json /overleaf/services/chat/package.json COPY tools/migrations/package.json /overleaf/tools/migrations/package.json COPY patches/ /overleaf/patches/ COPY tools/migrations/ /overleaf/tools/migrations/ RUN cd /overleaf && npm ci --quiet COPY libraries/fetch-utils/ /overleaf/libraries/fetch-utils/ COPY libraries/logger/ /overleaf/libraries/logger/ COPY libraries/metrics/ /overleaf/libraries/metrics/ COPY libraries/mongo-utils/ /overleaf/libraries/mongo-utils/ COPY libraries/o-error/ /overleaf/libraries/o-error/ COPY libraries/promise-utils/ /overleaf/libraries/promise-utils/ COPY libraries/settings/ /overleaf/libraries/settings/ COPY services/chat/ /overleaf/services/chat/ COPY tools/migrations/ /overleaf/tools/migrations/ FROM app USER node CMD ["node", "--expose-gc", "app.js"]