Spaces:
Running
Running
File size: 392 Bytes
0ede7b1 f35d02f a829a05 f35d02f 5cb0da7 0ede7b1 efa0bd6 5cb0da7 f35d02f efa0bd6 |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
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"] |