Skip to content

Commit

Permalink
Merge pull request #8 from tmknight/develop-34
Browse files Browse the repository at this point in the history
Privoxy v3.0.34 declared stable; source from 2023-01-22 snapshot
  • Loading branch information
tmknight authored Jan 29, 2023
2 parents 512e45d + f60bba8 commit 7d41b14
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ A companion project leveraging [Docker NordVPN](https://github.com/tmknight/dock
Build based on

- Alpine `3.17.1`
- [Privoxy](https://www.privoxy.org/) `3.0.33`
- [Privoxy](https://www.privoxy.org/) `3.0.34`
- Built from [source](https://www.privoxy.org/gitweb/?p=privoxy.git;a=summary)
- With support for [SSL inspection](https://www.privoxy.org/faq/misc.html#SSL)

Expand Down
14 changes: 10 additions & 4 deletions privoxy.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ LABEL org.opencontainers.image.licenses=GPL-3.0
LABEL org.opencontainers.image.source=https://github.com/tmknight/docker-privoxy
LABEL org.opencontainers.image.title=privoxy
LABEL autoheal=true
ARG PRIVOXY_VER=3.0.33
ARG PRIVOXY_VER=3.0.34
ENV CONFFILE=/etc/privoxy/config \
PIDFILE=/var/run/privoxy.pid
## Build privoxy
Expand All @@ -28,9 +28,15 @@ RUN apk --update --upgrade --no-cache --no-progress add \
&& mkdir -p /etc/privoxy \
&& mkdir -p /var/log/privoxy \
&& cd /tmp/ \
&& curl -sLJO "https://sourceforge.net/projects/ijbswa/files/Sources/${PRIVOXY_VER}%20%28stable%29/privoxy-${PRIVOXY_VER}-stable-src.tar.gz/download" \
&& tar xzvf privoxy-${PRIVOXY_VER}-stable-src.tar.gz \
&& cd privoxy-${PRIVOXY_VER}-stable \
## Sourceforge stable
# && curl -sLJO "https://sourceforge.net/projects/ijbswa/files/Sources/${PRIVOXY_VER}%20%28stable%29/privoxy-${PRIVOXY_VER}-stable-src.tar.gz/download" \
# && tar xzvf privoxy-${PRIVOXY_VER}-stable-src.tar.gz \
## Git snapshot (2023-01-22)
&& curl -sLJ -o privoxy-${PRIVOXY_VER}-stable-src.tar.gz "https://www.privoxy.org/gitweb/?p=privoxy.git;a=snapshot;h=b06af9867c069e30d4a35e6c961806962c20e13c;sf=tgz" \
&& mkdir ./privoxy-${PRIVOXY_VER}-stable \
&& tar xzvf privoxy-${PRIVOXY_VER}-stable-src.tar.gz -C ./privoxy-${PRIVOXY_VER}-stable --strip-components=1 \
## End source decision
&& cd ./privoxy-${PRIVOXY_VER}-stable \
&& autoheader \
&& autoconf \
&& ./configure \
Expand Down

0 comments on commit 7d41b14

Please sign in to comment.