Skip to content

Commit

Permalink
Merge pull request #69 from tmknight/dev/1.3.6
Browse files Browse the repository at this point in the history
Update privoxy.dockerfile
  • Loading branch information
tmknight authored Feb 11, 2024
2 parents 631f145 + 8714880 commit eb1f790
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docker/alpine/privoxy.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ RUN mkdir -p /etc/privoxy \
&& cd /tmp/ \
## Begin source decision
&& VER=$(echo "${PRIVOXY_VER}" | sed 's/\./_/g') \
&& if [ "${PRIVOXY_VER}" == "edge" ]; then REF="HEAD"; else REF="refs/tags/v_${VER}"; fi \
&& if [ "${PRIVOXY_VER}" = "edge" ]; then REF="HEAD"; else REF="refs/tags/v_${VER}"; fi \
&& curl -sLJ -o privoxy-${PRIVOXY_VER}-src.tar.gz "https://www.privoxy.org/gitweb/?p=privoxy.git;a=snapshot;h=${REF};sf=tgz" \
&& mkdir ./privoxy-${PRIVOXY_VER} \
&& tar xzvf privoxy-${PRIVOXY_VER}-src.tar.gz -C ./privoxy-${PRIVOXY_VER} --strip-components=1 \
Expand Down

0 comments on commit eb1f790

Please sign in to comment.