From 1c1d80acc6b3dec7c2cb2214f3b60daf5a2b3a3e Mon Sep 17 00:00:00 2001 From: Otto Moerbeek Date: Tue, 3 Dec 2024 09:25:19 +0100 Subject: [PATCH] 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 --- Dockerfile-recursor | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Dockerfile-recursor b/Dockerfile-recursor index 0f700781ee22..0a083917fd7f 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 && \