From 0ff872c4320a6fed55277296ddfe0b708f664f3c Mon Sep 17 00:00:00 2001 From: threatnoodle Date: Wed, 20 Jan 2016 09:38:35 +0000 Subject: [PATCH] adding dependencies that accidentally got removed and removed inappropriate purges --- mitmproxy/Dockerfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/mitmproxy/Dockerfile b/mitmproxy/Dockerfile index e093545..2155270 100644 --- a/mitmproxy/Dockerfile +++ b/mitmproxy/Dockerfile @@ -2,6 +2,8 @@ FROM ubuntu:latest MAINTAINER Jessica Frazelle RUN apt-get update && apt-get install -y \ + libxslt1.1 \ + libjpeg8 \ python \ python-dev \ python-virtualenv @@ -19,7 +21,7 @@ RUN buildDeps=' \ && useradd -m mitm \ && su -c "virtualenv /home/mitm/mitmproxy" mitm \ && su -c "/home/mitm/mitmproxy/bin/pip install Pillow==3.0 mitmproxy" mitm \ - && apt-get purge -y --auto-remove ${buildDeps} build-essential gcc \ + && apt-get purge -y --auto-remove ${buildDeps} \ && rm -rf /var/lib/apt/lists/* EXPOSE 8080