Merge pull request #67 from smangels/master

Install Cpp boost library as dependency for pdnsutil
This commit is contained in:
Christoph Wiechert
2021-10-22 12:04:11 +02:00
committed by GitHub

View File

@ -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/*