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
|
|
|
|
|
2021-07-13 07:26:35 -04:00
|
|
|
FROM node:12.22.3 as base
|
2018-05-23 06:27:31 -04:00
|
|
|
|
|
|
|
WORKDIR /app
|
|
|
|
|
2020-02-10 11:10:43 -05:00
|
|
|
FROM base as app
|
|
|
|
|
2018-05-23 06:27:31 -04:00
|
|
|
#wildcard as some files may not be in all repos
|
|
|
|
COPY package*.json npm-shrink*.json /app/
|
|
|
|
|
2020-05-28 09:19:48 -04:00
|
|
|
RUN npm ci --quiet
|
2018-05-23 06:27:31 -04:00
|
|
|
|
|
|
|
COPY . /app
|
|
|
|
|
2020-02-10 11:10:43 -05:00
|
|
|
FROM base
|
2018-05-23 06:27:31 -04:00
|
|
|
|
|
|
|
COPY --from=app /app /app
|
|
|
|
USER node
|
|
|
|
|
2018-12-10 16:42:14 -05:00
|
|
|
CMD ["node", "--expose-gc", "app.js"]
|