From dca44d163e9931f98381fcd918741f3caec6ce98 Mon Sep 17 00:00:00 2001 From: Dominique Barton Date: Sun, 17 Jan 2016 21:06:31 +0100 Subject: [PATCH] FEATURE: Using PyPi instead of apt packages --- Dockerfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 297cedd..f1387f5 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,9 @@ FROM debian:8 MAINTAINER Dominique Barton RUN apt-get -q update \ - && apt-get install -qy git python-cheetah python-openssl python-lxml \ + && apt-get install -qy git python-pip python-dev libz-dev libxml2-dev libxslt1-dev gcc \ + && pip install cheetah lxml pyopenssl \ + && apt-get -y remove python-dev libz-dev libxml2-dev libxslt1-dev gcc \ && apt-get -y autoremove \ && apt-get -y clean \ && rm -rf /var/lib/apt/lists/* \