overleaf/services/filestore/Dockerfile

23 lines
370 B
Text
Raw Normal View History

2019-12-13 15:46:35 +00:00
FROM node:10.17.0-jessie as app
2018-01-16 12:27:36 +00:00
2018-03-23 16:36:41 +00:00
WORKDIR /app
2018-01-16 12:27:36 +00:00
2018-05-22 12:45:01 +00:00
#wildcard as some files may not be in all repos
COPY package*.json npm-shrink*.json /app/
RUN npm install --quiet
COPY . /app
2018-03-23 16:14:30 +00:00
2018-01-16 12:27:36 +00:00
RUN npm run compile:all
2019-12-13 15:46:35 +00:00
FROM node:10.17.0-jessie
2018-01-16 12:27:36 +00:00
2018-03-23 16:36:41 +00:00
COPY --from=app /app /app
2018-01-16 12:27:36 +00:00
WORKDIR /app
2018-05-22 12:45:01 +00:00
RUN chmod 0755 ./install_deps.sh && ./install_deps.sh
2018-03-23 17:21:15 +00:00
USER node
2018-01-16 12:27:36 +00:00
2018-12-05 10:53:11 +00:00
CMD ["node", "--expose-gc", "app.js"]