From 6ee1756bf96a76e59dee423ef02377feb692f623 Mon Sep 17 00:00:00 2001 From: kev Date: Thu, 19 Mar 2015 15:36:29 +0800 Subject: [PATCH] fix missing python --- proxyhub/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/proxyhub/Dockerfile b/proxyhub/Dockerfile index f0048fa..4aa0986 100644 --- a/proxyhub/Dockerfile +++ b/proxyhub/Dockerfile @@ -6,7 +6,7 @@ FROM ubuntu:14.04 MAINTAINER kev RUN apt-get update -RUN apt-get install -y build-essential pdnsd haproxy nginx +RUN apt-get install -y build-essential pdnsd haproxy nginx python RUN apt-get clean ADD ./supervisord.conf /etc/supervisor/ @@ -36,6 +36,6 @@ RUN tar xzf dnscrypt-proxy-1.4.3.tar.gz && \ WORKDIR / RUN rm -r /tmp/pkgs/ -EXPOSE 80 1080 +EXPOSE 80 1080 9001 CMD supervisord -n -c /etc/supervisor/supervisord.conf