From: Otto Moerbeek Date: Tue, 3 Dec 2024 08:25:19 +0000 (+0100) Subject: rec: sync Dockerfile build options with packages X-Git-Tag: rec-5.2.0-rc1~18^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=refs%2Fpull%2F14917%2Fhead;p=thirdparty%2Fpdns.git rec: sync Dockerfile build options with packages Fixes #14915 Before: Features: libcrypto-ecdsa libcrypto-ed25519 libcrypto-ed448 libcrypto-eddsa lua nod protobuf dnstap-framestream sodium curl scrypt After: Features: libcrypto-ecdsa libcrypto-ed25519 libcrypto-ed448 libcrypto-eddsa lua nod protobuf dnstap-framestream snmp sodium curl DoT scrypt --- diff --git a/Dockerfile-recursor b/Dockerfile-recursor index 0f700781ee..0a083917fd 100644 --- a/Dockerfile-recursor +++ b/Dockerfile-recursor @@ -56,7 +56,13 @@ RUN mkdir /build && \ LUAVER=$([ -z "${NO_LUA_JIT##*$(dpkg --print-architecture)*}" ] && echo 'lua5.3' || echo 'luajit') && \ apt-get install -y lib${LUAVER}-*dev && \ ./configure \ + --with-libcap \ + --with-libsodium \ --with-lua=${LUAVER} \ + --with-net-snmp \ + --enable-dns-over-tls \ + --enable-dnstap \ + --enable-nod \ LDFLAGS=-rdynamic \ --sysconfdir=/etc/powerdns \ --enable-option-checking=fatal && \