X-Git-Url: https://git.openstreetmap.org/dns.git/blobdiff_plain/bb037e9028d68d264164c6baaca019d11b8c2c28..064f53964ad1c1744e460385768e5bd673631494:/Dockerfile diff --git a/Dockerfile b/Dockerfile index 72de5d5..8799bfb 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,8 +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 + libjson-xs-perl \ + jq \ + 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 . .