overleaf/services/filestore/Dockerfile

28 lines
613 B
Docker
Raw Normal View History

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
FROM node:14.18.1 as base
2018-01-16 07:27:36 -05:00
2018-03-23 12:36:41 -04:00
WORKDIR /app
COPY install_deps.sh /app
RUN chmod 0755 ./install_deps.sh && ./install_deps.sh
FROM base as 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/
2020-06-03 04:59:54 -04:00
RUN npm ci --quiet
COPY . /app
2018-03-23 12:14:30 -04:00
FROM base
2018-01-16 07:27:36 -05:00
2018-03-23 12:36:41 -04:00
COPY --from=app /app /app
RUN mkdir -p uploads user_files template_files \
&& chown node:node uploads user_files template_files
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"]