From 4476fc844886df1113b0629b0acafc8b6d9ad75b Mon Sep 17 00:00:00 2001 From: kev Date: Sun, 24 May 2015 11:22:31 +0800 Subject: [PATCH] update --- obfsproxy/Dockerfile | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/obfsproxy/Dockerfile b/obfsproxy/Dockerfile index 6a27835..cb32f04 100644 --- a/obfsproxy/Dockerfile +++ b/obfsproxy/Dockerfile @@ -2,12 +2,17 @@ # Dockerfile for obfsproxy # -FROM ubuntu:14.04 +FROM debian:jessie MAINTAINER kev -RUN apt-get update && apt-get install -y build-essential curl python python-dev -RUN curl https://bootstrap.pypa.io/get-pip.py | python -RUN pip install obfsproxy +RUN apt-get update \ + && apt-get install -y build-essential curl python python-dev \ + && curl https://bootstrap.pypa.io/get-pip.py | python \ + && pip install obfsproxy \ + && apt-get remove -y build-essential python-dev \ + && apt-get autoremove -y \ + && apt-get clean \ + && rm -rf /var/lib/apt/lists/* ENV LOG_MIN_SEVERITY info ENV DATA_DIR /var/lib/obfsproxy