From 3694468ecb4a731726dfab26223a26b896453b63 Mon Sep 17 00:00:00 2001 From: "Sebastian Mangelsen (sebman)" Date: Fri, 22 Oct 2021 12:01:54 +0200 Subject: [PATCH] Install Cpp boost library as dependency for pdnsutil * solves #66 * boost library is an requirement for pdnsutil but has previously been removed from the Docker image as part of build dependencies for PDNS. --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index ea76ce5..f08d895 100644 --- a/Dockerfile +++ b/Dockerfile @@ -22,6 +22,7 @@ RUN apk --update add bash libpq sqlite-libs libstdc++ libgcc mariadb-client mari adduser -S -D -H -h /var/empty -s /bin/false -G pdns -g pdns pdns 2>/dev/null && \ cp /usr/lib/libboost_program_options.so* /tmp && \ apk del --purge build-deps && \ + apk add boost-libs && \ mv /tmp/lib* /usr/lib/ && \ rm -rf /tmp/pdns-$POWERDNS_VERSION /var/cache/apk/*