Remove yml in dockerfiles #nobuild

This commit is contained in:
dave 2015-11-01 18:05:04 -08:00
parent 20c1ffd2fc
commit 77c1981a3e
2 changed files with 2 additions and 2 deletions

View File

@ -3,7 +3,7 @@ FROM ubuntu:trusty
COPY start /start COPY start /start
RUN apt-get update ; \ RUN apt-get update ; \
apt-get install -y python3 python3-sphinx python3-setuptools python3-dev python3-requests python3-pip python3-yaml python3-lxml make wget unzip libmysqlclient-dev ; \ apt-get install -y python3 python3-sphinx python3-setuptools python3-dev python3-requests python3-pip python3-lxml make wget unzip libmysqlclient-dev ; \
pip3 install pytz praw ; \ pip3 install pytz praw ; \
cd /tmp ; \ cd /tmp ; \
wget https://github.com/jgarzik/python-bitcoinrpc/archive/master.zip ; \ wget https://github.com/jgarzik/python-bitcoinrpc/archive/master.zip ; \

View File

@ -1,7 +1,7 @@
FROM ubuntu:trusty FROM ubuntu:trusty
RUN apt-get update ; \ RUN apt-get update ; \
apt-get install -y python3 python3-setuptools python3-requests python3-yaml curl sqlite3 supervisor ; \ apt-get install -y python3 python3-setuptools python3-requests curl sqlite3 supervisor ; \
easy_install3 pip ; \ easy_install3 pip ; \
pip3 install praw pytz ; \ pip3 install praw pytz ; \
useradd bot ; \ useradd bot ; \