2020-02-10 11:10:43 -05:00
|
|
|
# This file was auto-generated, do not edit it directly.
|
|
|
|
# Instead run bin/update_build_scripts from
|
|
|
|
# https://github.com/sharelatex/sharelatex-dev-environment
|
|
|
|
|
2022-01-27 05:29:20 -05:00
|
|
|
FROM node:14.18.3 as base
|
2018-05-23 06:01:07 -04:00
|
|
|
|
2022-01-06 10:02:36 -05:00
|
|
|
WORKDIR /overleaf/services/contacts
|
2018-05-23 06:01:07 -04:00
|
|
|
|
2020-02-10 11:10:43 -05:00
|
|
|
FROM base as app
|
|
|
|
|
2022-01-06 10:02:36 -05:00
|
|
|
COPY services/contacts/package*.json /overleaf/services/contacts/
|
2018-05-23 06:01:07 -04:00
|
|
|
|
2020-08-10 12:01:11 -04:00
|
|
|
RUN npm ci --quiet
|
2018-05-23 06:01:07 -04:00
|
|
|
|
2022-01-06 10:02:36 -05:00
|
|
|
COPY services/contacts /overleaf/services/contacts
|
2018-05-23 06:01:07 -04:00
|
|
|
|
2022-01-06 10:02:36 -05:00
|
|
|
FROM app
|
2018-05-23 06:01:07 -04:00
|
|
|
USER node
|
|
|
|
|
2019-01-10 04:18:01 -05:00
|
|
|
CMD ["node", "--expose-gc", "app.js"]
|