2019-12-16 12:09:38 -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
|
|
|
|
# Version: 1.3
|
|
|
|
|
2020-02-07 09:16:31 -05:00
|
|
|
FROM node:10.19.0 as app
|
2018-01-16 07:27:36 -05:00
|
|
|
|
2018-03-23 12:36:41 -04:00
|
|
|
WORKDIR /app
|
2018-01-16 07:27:36 -05:00
|
|
|
|
2018-05-22 08:45:01 -04:00
|
|
|
#wildcard as some files may not be in all repos
|
|
|
|
COPY package*.json npm-shrink*.json /app/
|
2018-05-18 08:55:33 -04:00
|
|
|
|
|
|
|
RUN npm install --quiet
|
|
|
|
|
|
|
|
COPY . /app
|
2018-03-23 12:14:30 -04:00
|
|
|
|
2018-01-16 07:27:36 -05:00
|
|
|
|
2019-12-16 12:09:38 -05:00
|
|
|
|
2020-02-07 09:16:31 -05:00
|
|
|
FROM node:10.19.0
|
2018-01-16 07:27:36 -05:00
|
|
|
|
2018-03-23 12:36:41 -04:00
|
|
|
COPY --from=app /app /app
|
2018-03-23 12:26:42 -04:00
|
|
|
|
2018-01-16 07:27:36 -05:00
|
|
|
WORKDIR /app
|
2018-05-22 08:45:01 -04:00
|
|
|
RUN chmod 0755 ./install_deps.sh && ./install_deps.sh
|
2018-03-23 13:21:15 -04:00
|
|
|
USER node
|
2018-01-16 07:27:36 -05:00
|
|
|
|
2018-12-05 05:53:11 -05:00
|
|
|
CMD ["node", "--expose-gc", "app.js"]
|