From 77c1981a3e56daa701f2bb5cc8b6ef92ec462c1b Mon Sep 17 00:00:00 2001 From: dave Date: Sun, 1 Nov 2015 18:05:04 -0800 Subject: [PATCH] Remove yml in dockerfiles #nobuild --- docs/builder/Dockerfile | 2 +- examples/docker/Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/builder/Dockerfile b/docs/builder/Dockerfile index b6a3aed..f7a9dfa 100644 --- a/docs/builder/Dockerfile +++ b/docs/builder/Dockerfile @@ -3,7 +3,7 @@ FROM ubuntu:trusty COPY start /start 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 ; \ cd /tmp ; \ wget https://github.com/jgarzik/python-bitcoinrpc/archive/master.zip ; \ diff --git a/examples/docker/Dockerfile b/examples/docker/Dockerfile index 2104fd3..c9d1499 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 curl sqlite3 supervisor ; \ + apt-get install -y python3 python3-setuptools python3-requests curl sqlite3 supervisor ; \ easy_install3 pip ; \ pip3 install praw pytz ; \ useradd bot ; \