From 9e0b95e1df8a4ed7223d1364a0de25943a02578d Mon Sep 17 00:00:00 2001 From: Wolfgang Hottgenroth Date: Wed, 27 Oct 2021 13:11:07 +0200 Subject: [PATCH] fixes --- Dockerfile | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/Dockerfile b/Dockerfile index cd27a56..5b63ad2 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,12 +8,11 @@ RUN \ apk add openssl-dev && \ apk add expat-dev && \ apk add libevent-dev && \ - apk add libsodium-dev && \ mkdir build && \ cd build && \ git clone https://github.com/NLnetLabs/unbound.git && \ cd unbound && \ - ./configure --with-libsodium --with-libnghttp2 --with-libevent --enable-sha2 --enable-dnscrypt --prefix /opt/unbound && \ + ./configure --with-libnghttp2 --with-libevent --prefix /opt/unbound && \ make && \ make install @@ -27,20 +26,19 @@ RUN \ apk add --no-cache nghttp2-libs && \ apk add --no-cache expat && \ apk add --no-cache libevent && \ - apk add --no-cache libsodium && \ adduser -D unbound && \ + mkdir /etc/unbound && \ mv /opt/unbound/etc/unbound/unbound.conf /opt/unbound/etc/unbound/unbound.conf-dist && \ - ln -s /opt/unbound/etc/unbound /etc/unbound - COPY unbound.conf /opt/unbound/etc/unbound/unbound.conf +COPY unbound.conf /etc/unbound/unbound.conf EXPOSE 53/udp EXPOSE 53/tcp EXPOSE 853/tcp -VOLUME /opt/unbound/etc/unbound +VOLUME /etc/unbound -CMD [ "/opt/unbound/sbin/unbound" ] +CMD [ "/opt/unbound/sbin/unbound", "-c", "/etc/unbound/unbound.conf" ]