mirror of
https://github.com/vimagick/dockerfiles.git
synced 2024-11-24 08:52:31 +02:00
25 lines
609 B
Docker
25 lines
609 B
Docker
#
|
|
# Dockerfile for privoxy
|
|
#
|
|
|
|
FROM alpine
|
|
MAINTAINER kev <noreply@easypi.pro>
|
|
|
|
RUN set -xe \
|
|
&& apk add -U curl privoxy \
|
|
&& curl -sSL https://github.com/tianon/gosu/releases/download/1.9/gosu-amd64 > /usr/sbin/gosu \
|
|
&& chmod +x /usr/sbin/gosu \
|
|
&& apk del curl \
|
|
&& rm -rf /var/cache/apk/*
|
|
|
|
RUN sed -i -e '/^listen-address/s/127.0.0.1/0.0.0.0/' \
|
|
-e '/^accept-intercepted-requests/s/0/1/' \
|
|
-e '/^enforce-blocks/s/0/1/' \
|
|
-e '/^#debug/s/#//' /etc/privoxy/config
|
|
|
|
VOLUME /etc/privoxy
|
|
|
|
EXPOSE 8118
|
|
|
|
CMD gosu privoxy privoxy --no-daemon /etc/privoxy/config
|