overleaf/services/document-updater/Dockerfile

14 lines
369 B
Docker
Raw Normal View History

2016-07-07 11:07:14 -04:00
FROM ubuntu
COPY ./test/acceptance/docker-entrypoint.sh /entrypoint.sh
RUN chmod +x /entrypoint.sh
2016-07-07 11:07:14 -04:00
RUN apt-get update && apt-get upgrade -y
RUN apt-get install -y build-essential redis-server mongodb-server nodejs npm
2016-07-07 11:07:14 -04:00
RUN ln -s /usr/bin/nodejs /usr/bin/node
RUN npm install -g grunt-cli
2016-07-07 11:07:14 -04:00
RUN mkdir /document-updater
VOLUME /document-updater
ENTRYPOINT /entrypoint.sh