overleaf/services/filestore/Dockerfile

24 lines
353 B
Docker
Raw Normal View History

FROM node:6.9.5 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/
RUN npm install --quiet
COPY . /app
2018-03-23 12:14:30 -04:00
2018-01-16 07:27:36 -05:00
RUN npm run compile:all
FROM node:6.9.5
2018-01-16 07:27:36 -05:00
2018-03-23 12:36:41 -04:00
COPY --from=app /app /app
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"]