From: Josh Soref Date: Sun, 29 Aug 2021 15:24:14 +0000 (-0400) Subject: docker: apt does not have a stable cli X-Git-Tag: dnsdist-1.7.0-alpha1~43^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=refs%2Fpull%2F10679%2Fhead;p=thirdparty%2Fpdns.git docker: apt does not have a stable cli --- diff --git a/Dockerfile-auth b/Dockerfile-auth index 2cb17cca3d..8ba2945f49 100644 --- a/Dockerfile-auth +++ b/Dockerfile-auth @@ -81,7 +81,7 @@ RUN chmod 1777 /tmp # FIXME: better not use /build/tmp for equivs at all RUN setcap 'cap_net_bind_service=+eip' /usr/local/sbin/pdns_server # Ensure dependencies are present -RUN apt install -y /tmp/equivs-dummy_1.0_all.deb && apt clean +RUN apt-get install -y /tmp/equivs-dummy_1.0_all.deb && apt-get clean # Start script COPY dockerdata/startup.py /usr/local/sbin/pdns_server-startup diff --git a/Dockerfile-dnsdist b/Dockerfile-dnsdist index 521bc173db..4869241ace 100644 --- a/Dockerfile-dnsdist +++ b/Dockerfile-dnsdist @@ -77,7 +77,7 @@ RUN chmod 1777 /tmp # FIXME: better not use /build/tmp for equivs at all RUN setcap 'cap_net_bind_service=+eip' /usr/local/bin/dnsdist # Ensure dependencies are present -RUN apt install -y /tmp/equivs-dummy_1.0_all.deb && apt clean +RUN apt-get install -y /tmp/equivs-dummy_1.0_all.deb && apt-get clean # Config RUN mkdir -p /etc/dnsdist/conf.d /etc/dnsdist/templates.d diff --git a/Dockerfile-recursor b/Dockerfile-recursor index beee2fd9ef..e26fb31343 100644 --- a/Dockerfile-recursor +++ b/Dockerfile-recursor @@ -80,7 +80,7 @@ RUN chmod 1777 /tmp # FIXME: better not use /build/tmp for equivs at all RUN setcap 'cap_net_bind_service=+eip' /usr/local/sbin/pdns_recursor # Ensure dependencies are present -RUN apt install -y /tmp/equivs-dummy_1.0_all.deb && apt clean +RUN apt-get install -y /tmp/equivs-dummy_1.0_all.deb && apt-get clean # Start script COPY dockerdata/startup.py /usr/local/sbin/pdns_recursor-startup