overleaf/services/web/Dockerfile
Brian Gough 84829abf9a Merge pull request #2578 from overleaf/update-node-10
update to gcr.io/overleaf-ops/node:10.19.0

GitOrigin-RevId: f0eac5e6397842de5f931d145526de3e0a54336b
2020-02-06 04:20:16 +00:00

21 lines
372 B
Docker

FROM gcr.io/overleaf-ops/node:10.19.0 as app
WORKDIR /app
#wildcard as some files may not be in all repos
COPY package.json package-lock.json /app/
RUN npm install --quiet
COPY . /app
FROM gcr.io/overleaf-ops/node:10.19.0
COPY --from=app /app /app
WORKDIR /app
RUN chmod 0755 ./install_deps.sh && ./install_deps.sh
USER node
CMD ["node", "--expose-gc", "app.js"]