overleaf/services/filestore/Dockerfile

24 lines
337 B
Text
Raw Normal View History

FROM node:6.9.5 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
FROM node:6.9.5
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
CMD ["node","app.js"]