X-Git-Url: https://git.openstreetmap.org./dns.git/blobdiff_plain/b1e38febcb3f6fc135422da6068c6fbe58a0f5e0..95a7071a0f34c538da85f1fdffaa2a428e38a26e:/Dockerfile?ds=sidebyside diff --git a/Dockerfile b/Dockerfile index c987603..8799bfb 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,10 +3,16 @@ FROM debian:stable RUN apt-get update && apt-get install -y --no-install-recommends \ make \ libxml-treebuilder-perl \ + libyaml-libyaml-perl \ libyaml-perl \ libjson-xs-perl \ jq \ - less + less \ + curl + +RUN curl -fsSL https://github.com/StackExchange/dnscontrol/releases/download/v3.3.0/dnscontrol-Linux -o /usr/local/bin/dnscontrol \ + && chmod +x /usr/local/bin/dnscontrol \ + && /usr/local/bin/dnscontrol version WORKDIR /dns ADD . .