diff --git a/examples/docker/Dockerfile b/examples/docker/Dockerfile index 4f7b16f..ec5de16 100644 --- a/examples/docker/Dockerfile +++ b/examples/docker/Dockerfile @@ -6,10 +6,8 @@ RUN apt-get update ; \ pip3 install praw pytz ; \ useradd bot ; \ cd /tmp ; \ - wget http://gitlab.xmopx.net/dave/pyircbot3/repository/archive.tar.gz ; \ - mkdir pyircbot.git ;\ - tar zxvf archive.tar.gz -C pyircbot.git --strip-components=1 ; \ - rm archive.tar.gz ; \ + mkdir pyircbot3.git ; \ + curl http://gitlab.xmopx.net/dave/pyircbot3/repository/archive.tar.gz | tar zxvf - -C pyircbot3.git --strip-components=1 ; \ cd pyircbot3.git/ ; \ python3 setup.py install ; \ mkdir /srv/bot ; \