X-Git-Url: https://git.openstreetmap.org./dns.git/blobdiff_plain/1d6f8a21b543dc7cfeedb3d853cee0bd1f099c1d..a57ccd694bbd98bd16aa90666c3d734aa3b90771:/Dockerfile diff --git a/Dockerfile b/Dockerfile index c987603..2993781 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,13 +3,19 @@ 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 \ + ca-certificates + +RUN curl -fsSL https://github.com/StackExchange/dnscontrol/releases/download/v3.13.0/dnscontrol_3.13.0_amd64.deb -o /tmp/dnscontrol.deb \ + && apt install /tmp/dnscontrol.deb -y WORKDIR /dns ADD . . -RUN make +RUN make preview VOLUME ["/dns/data"]