Sknei28jS / Dockerfile
TomatoFull's picture
Update Dockerfile
efa0bd6 verified
raw
history blame contribute delete
392 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"]