File size: 390 Bytes
57fc191
 
47e2cb4
57fc191
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
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"]