diff --git a/Dockerfile b/Dockerfile index 5b759b5..73a9562 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,30 +1,30 @@ # # Docker image for Etherpad # FROM debian:stretch # Forked from Tony Motakis MAINTAINER Sébastien Santoro aka Dereckson RUN apt-get update && \ - apt-get install -y curl unzip mysql-client git sudo python libssl-dev pkg-config build-essential && \ + apt-get install -y curl unzip mysql-client git sudo python libssl-dev pkg-config build-essential abiword && \ curl -sL https://deb.nodesource.com/setup_9.x | bash && \ apt-get install -y nodejs && \ rm -r /var/lib/apt/lists/* RUN cd /opt && \ git clone https://github.com/ether/etherpad-lite && \ cd etherpad-lite && \ bin/installDeps.sh && \ rm settings.json COPY entrypoint.sh /entrypoint.sh VOLUME /opt/etherpad-lite/var RUN ln -s /opt/etherpad-lite/var/settings.json /opt/etherpad-lite/settings.json WORKDIR /opt/etherpad-lite EXPOSE 9001 ENTRYPOINT ["/entrypoint.sh"] CMD ["bin/run.sh", "--root"]