Spaces:
Running
Running
FROM ubuntu:latest | |
#ENV DEBIAN_FRONTEND=noninteractive | |
RUN apt-get update && apt-get install -y \ | |
privoxy \ | |
&& apt-get clean | |
RUN sed -i 's/^listen-address.*/listen-address 0.0.0.0:7860/' /etc/privoxy/config \ | |
&& sed -i 's/^logfile.*/logfile \/dev\/stdout/' /etc/privoxy/config \ | |
&& sed -i 's/^debug.*/debug 1/' /etc/privoxy/config | |
CMD ["privoxy", "/etc/privoxy/config"] |