X-Git-Url: https://git.openstreetmap.org/dns.git/blobdiff_plain/2be0aa31e74d747f8fcf891a4365772dc7a0abb7..faea8580706fb38306462a30e9644283c6e8ef0b:/Dockerfile diff --git a/Dockerfile b/Dockerfile index 2993781..4185fbd 100644 --- a/Dockerfile +++ b/Dockerfile @@ -11,11 +11,15 @@ RUN apt-get update && apt-get install -y --no-install-recommends \ 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 \ +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 preview VOLUME ["/dns/data"] + +CMD ["make", "check"]