tejdbekw2 / Dockerfile
TomatoFull's picture
Update Dockerfile
47e2cb4 verified
raw
history blame contribute delete
390 Bytes
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"]