Skip to content

Commit f50b58e

Browse files
committed
add: --with-zstd
1 parent 41151f2 commit f50b58e

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ FROM debian:stable-slim AS build-privoxy
22

33
ARG PRIVOXY_VERSION=4.1.0
44
ARG PRIVOXY_SRC_SHA1SUM=6afc12dc38781a37670c7e4bb69700900123084f
5-
ARG PRIVOXY_CONFIG_OPTIONS="--disable-toggle --disable-editor --disable-force --with-openssl --with-brotli"
6-
ARG PRIVOXY_BUILD_EXTRA="libssl-dev libbrotli-dev"
5+
ARG PRIVOXY_CONFIG_OPTIONS="--disable-toggle --disable-editor --disable-force --with-openssl --with-brotli --with-zstd"
6+
ARG PRIVOXY_BUILD_EXTRA="libssl-dev libbrotli-dev libzstd1"
77

88
SHELL ["/bin/bash", "-eo", "pipefail", "-c"]
99

@@ -66,7 +66,7 @@ RUN set -eux; \
6666

6767
FROM debian:stable-slim AS runtime
6868

69-
ARG SYSTEM_EXTRA_PKGS="brotli net-tools"
69+
ARG SYSTEM_EXTRA_PKGS="brotli libzstd1 net-tools"
7070

7171
SHELL ["/bin/bash", "-eo", "pipefail", "-c"]
7272

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -135,3 +135,4 @@ docker cp privoxy:/usr/local/etc/privoxy/CA/privoxy-ca-bundle.crt .
135135
- --disable-force
136136
- --with-openssl
137137
- --with-brotli
138+
- --with-zstd

0 commit comments

Comments
 (0)