From f790f2be89d484adba5e89ad51fe33c05787c6d8 Mon Sep 17 00:00:00 2001 From: dave Date: Mon, 14 Sep 2015 22:32:53 -0700 Subject: [PATCH] use curl instead of wget --- examples/docker/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/docker/Dockerfile b/examples/docker/Dockerfile index ec5de16..2104fd3 100644 --- a/examples/docker/Dockerfile +++ b/examples/docker/Dockerfile @@ -1,7 +1,7 @@ FROM ubuntu:trusty RUN apt-get update ; \ - apt-get install -y python3 python3-setuptools python3-requests python3-yaml wget sqlite3 supervisor ; \ + apt-get install -y python3 python3-setuptools python3-requests python3-yaml curl sqlite3 supervisor ; \ easy_install3 pip ; \ pip3 install praw pytz ; \ useradd bot ; \