X-Git-Url: https://git.openstreetmap.org/dns.git/blobdiff_plain/95a7071a0f34c538da85f1fdffaa2a428e38a26e..faea8580706fb38306462a30e9644283c6e8ef0b:/Dockerfile diff --git a/Dockerfile b/Dockerfile index 8799bfb..4185fbd 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,14 +8,18 @@ RUN apt-get update && apt-get install -y --no-install-recommends \ libjson-xs-perl \ jq \ less \ - curl + curl \ + ca-certificates -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 +SHELL ["/bin/bash", "-o", "pipefail", "-c"] + +RUN arch=$(arch | sed s/aarch64/arm64/ | sed s/x86_64/amd64/) \ + && curl -fsSL https://github.com/StackExchange/dnscontrol/releases/download/v3.20.0/dnscontrol-3.20.0.${arch}.deb -o /tmp/dnscontrol.deb \ + && apt install /tmp/dnscontrol.deb -y WORKDIR /dns ADD . . -RUN make VOLUME ["/dns/data"] + +CMD ["make", "check"]