overleaf/services/notifications/Dockerfile

21 lines
465 B
Docker
Raw Normal View History

# This file was auto-generated, do not edit it directly.
# Instead run bin/update_build_scripts from
# https://github.com/sharelatex/sharelatex-dev-environment
FROM node:14.18.1 as base
WORKDIR /overleaf/services/notifications
FROM base as app
COPY services/notifications/package*.json /overleaf/services/notifications/
2020-08-10 12:10:30 -04:00
RUN npm ci --quiet
COPY services/notifications /overleaf/services/notifications
FROM app
USER node
2019-01-09 10:22:17 -05:00
CMD ["node", "--expose-gc", "app.js"]