diff --git a/Dockerfile b/Dockerfile index c6d1403..dd23ab2 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,9 +5,7 @@ COPY . /usr/src/app/ RUN pip install --upgrade pip RUN pip install -r /usr/src/app/requirements.txt WORKDIR /usr/src/app/ -COPY sources.list /etc/apt/ -COPY config /etc/privoxy/ RUN apt-get update \ -&& apt-get install privoxy \ -&& /etc/init.d/privoxy start +&& apt-get install privoxy +COPY config /etc/privoxy/ CMD ["sh", "./run.sh"]