overleaf/services/chat/Dockerfile

24 lines
430 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:12.22.3 as base
2018-05-22 12:25:17 -04:00
WORKDIR /app
FROM base as app
2018-05-22 12:25:17 -04:00
#wildcard as some files may not be in all repos
COPY package*.json npm-shrink*.json /app/
2020-08-10 12:01:11 -04:00
RUN npm ci --quiet
2018-05-22 12:25:17 -04:00
COPY . /app
FROM base
2018-05-22 12:25:17 -04:00
COPY --from=app /app /app
USER node
2019-01-04 06:03:03 -05:00
CMD ["node", "--expose-gc", "app.js"]