From eb35b69dfa1bc1284172d2209b5c837ccb83ef98 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christer=20War=C3=A9n?= Date: Mon, 31 Dec 2018 07:55:37 +0200 Subject: [PATCH] Update Dockerfile --- contrib/docker/Dockerfile | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/contrib/docker/Dockerfile b/contrib/docker/Dockerfile index 4ac5214..1777032 100644 --- a/contrib/docker/Dockerfile +++ b/contrib/docker/Dockerfile @@ -3,13 +3,13 @@ LABEL maintainer="Christer Waren/CWINFO " WORKDIR /src - RUN apt-get update && \ apt-get install -y git python-flask python-flup python-mysqldb python-pygraphviz python-networkx cron && \ apt-get clean -RUN git clone https://github.com/Arceliar/yggdrasil-map.git && \ - cd yggdrasil-map/web && \ +RUN git clone https://github.com/Arceliar/yggdrasil-map.git + +RUN cd yggdrasil-map/web && \ cp web_config.example.cfg web_config.cfg COPY entrypoint.sh /usr/bin/entrypoint.sh @@ -18,5 +18,4 @@ RUN chmod 0555 /usr/bin/entrypoint.sh COPY crontab /etc/cron.d/jobs RUN chmod 0644 /etc/cron.d/jobs - ENTRYPOINT [ "/usr/bin/entrypoint.sh"]