From: Peter van Dijk Date: Fri, 17 Oct 2025 20:23:29 +0000 (+0200) Subject: rec builder: don't try to copy rust files that are not there X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F16297%2Fhead;p=thirdparty%2Fpdns.git rec builder: don't try to copy rust files that are not there Signed-off-by: Peter van Dijk --- diff --git a/builder-support/dockerfiles/Dockerfile.debbuild-prepare b/builder-support/dockerfiles/Dockerfile.debbuild-prepare index 3f4a0810a6..1c98a1777f 100644 --- a/builder-support/dockerfiles/Dockerfile.debbuild-prepare +++ b/builder-support/dockerfiles/Dockerfile.debbuild-prepare @@ -9,7 +9,6 @@ ADD builder/helpers/ /pdns/builder/helpers/ ADD builder-support/helpers/ /pdns/builder-support/helpers/ @IF [ -n "$M_recursor$M_all" ] -COPY --from=pdns-recursor /tmp/rust* /tmp RUN cd /pdns/builder-support/helpers/ && ./install_rust.sh RUN DEBIAN_FRONTEND=noninteractive apt-get -y install --no-install-recommends git cmake clang RUN DEBIAN_FRONTEND=noninteractive apt-get -y install --no-install-recommends python3-pip ninja-build diff --git a/builder-support/dockerfiles/Dockerfile.rpmbuild b/builder-support/dockerfiles/Dockerfile.rpmbuild index 82cd02d435..f34f9a0bcf 100644 --- a/builder-support/dockerfiles/Dockerfile.rpmbuild +++ b/builder-support/dockerfiles/Dockerfile.rpmbuild @@ -16,7 +16,6 @@ ADD builder/helpers/ /pdns/builder/helpers/ ADD builder-support/helpers/ /pdns/builder-support/helpers/ @IF [ -n "$M_recursor$M_all" ] -COPY --from=pdns-recursor /tmp/rust* /tmp RUN cd /pdns/builder-support/helpers/ && ./install_rust.sh && \ yum install -y git cmake clang RUN cd /pdns/builder-support/helpers/ && ./install_meson.sh