Merge pull request #6542 from overleaf/jpa-em-code-sharing-workspaces
[misc] npm workspaces GitOrigin-RevId: 87aa72db6637fb238d7cd35b0a48ac3ed58ab3eb
This commit is contained in:
@@ -2,17 +2,23 @@
|
||||
# Instead run bin/update_build_scripts from
|
||||
# https://github.com/sharelatex/sharelatex-dev-environment
|
||||
|
||||
FROM node:14.18.3 as base
|
||||
FROM gcr.io/overleaf-ops/node:14.18.3 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 services/notifications/package*.json /overleaf/services/notifications/
|
||||
COPY package.json package-lock.json /overleaf/
|
||||
COPY services/notifications/package.json /overleaf/services/notifications/
|
||||
COPY libraries/ /overleaf/libraries/
|
||||
|
||||
RUN npm ci --quiet
|
||||
RUN cd /overleaf && npm ci --quiet
|
||||
|
||||
COPY services/notifications /overleaf/services/notifications
|
||||
COPY services/notifications/ /overleaf/services/notifications/
|
||||
|
||||
FROM app
|
||||
USER node
|
||||
|
||||
Reference in New Issue
Block a user