From 1f9e7225a44508ce786a92f1ba77d5c54fef2c61 Mon Sep 17 00:00:00 2001 From: dave Date: Sun, 1 Nov 2015 18:16:34 -0800 Subject: [PATCH] Switch bitcoinrpc source in dockerfile --- examples/docker/Dockerfile | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/examples/docker/Dockerfile b/examples/docker/Dockerfile index c9d1499..c04da90 100644 --- a/examples/docker/Dockerfile +++ b/examples/docker/Dockerfile @@ -1,9 +1,14 @@ FROM ubuntu:trusty RUN apt-get update ; \ - apt-get install -y python3 python3-setuptools python3-requests curl sqlite3 supervisor ; \ + apt-get install -y python3 python3-setuptools python3-requests curl unzip sqlite3 supervisor ; \ easy_install3 pip ; \ pip3 install praw pytz ; \ + cd /tmp ; \ + curl -o /tmp/bitcoinrpc.zip https://codeload.github.com/dpedu/python-bitcoinrpc/zip/master ; \ + unzip bitcoinrpc.zip ; \ + cd python-bitcoinrpc-master ; \ + python3 setup.py install ; \ useradd bot ; \ cd /tmp ; \ mkdir pyircbot3.git ; \ @@ -15,7 +20,7 @@ RUN apt-get update ; \ echo "[supervisord]" > /etc/supervisor/conf.d/supervisor.conf ; \ echo "nodaemon=true" >> /etc/supervisor/conf.d/supervisor.conf ; \ su -c "cp -r /tmp/pyircbot3.git/examples/config.json /tmp/pyircbot3.git/examples/data/ /srv/bot/" bot ; \ - rm -rf /var/lib/apt/lists/* + rm -rf /var/lib/apt/lists/* /tmp/bitcoinrpc.zip /tmp/python-bitcoinrpc-master /tmp/pyircbot3.git ADD pyircbot.conf /etc/supervisor/conf.d/pyircbot.conf