X-Git-Url: https://git.openstreetmap.org/dns.git/blobdiff_plain/95a7071a0f34c538da85f1fdffaa2a428e38a26e..e411e476a30f83da99b89b9a2664229e25c60e82:/Dockerfile diff --git a/Dockerfile b/Dockerfile index 8799bfb..2c0cc88 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.22.0/dnscontrol-3.22.0.${arch}.deb -o /tmp/dnscontrol.deb \ + && apt install /tmp/dnscontrol.deb -y WORKDIR /dns ADD . . -RUN make VOLUME ["/dns/data"] + +CMD ["make", "check"]