mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
12 lines
306 B
Text
12 lines
306 B
Text
|
FROM ubuntu
|
||
|
|
||
|
COPY ./test/acceptance/docker-entrypoint.sh /entrypoint.sh
|
||
|
|
||
|
RUN apt-get update && apt-get upgrade
|
||
|
RUN apt-get install build-essential redis-server mongodb-server nodejs npm
|
||
|
RUN ln -s /usr/bin/nodejs /usr/bin/node
|
||
|
|
||
|
RUN mkdir /document-updater
|
||
|
VOLUME /document-updater
|
||
|
|
||
|
ENTRYPOINT /entrypoint.sh
|