From c209d3efb8a9ddfe5573f0d62b3da7b222039025 Mon Sep 17 00:00:00 2001 From: Remi Gacogne Date: Fri, 7 Mar 2025 10:41:19 +0100 Subject: [PATCH] dnsdist: Generate the `dist` tarball in `/tmp/dnsdist-meson-dist-build` --- builder-support/dockerfiles/Dockerfile.dnsdist | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/builder-support/dockerfiles/Dockerfile.dnsdist b/builder-support/dockerfiles/Dockerfile.dnsdist index 1d9f5c1cfe..4c5f7ac568 100644 --- a/builder-support/dockerfiles/Dockerfile.dnsdist +++ b/builder-support/dockerfiles/Dockerfile.dnsdist @@ -12,7 +12,6 @@ RUN mkdir /sdist ARG BUILDER_VERSION RUN cd /dnsdist/pdns/dnsdistdist && \ - meson setup build && \ - meson dist -C build --no-tests -WORKDIR /dnsdist/pdns/dnsdistdist -RUN cp build/meson-dist/dnsdist-${BUILDER_VERSION}.tar.xz /sdist/ + meson setup /tmp/dnsdist-meson-dist-build && \ + meson dist -C /tmp/dnsdist-meson-dist-build --no-tests +RUN cp /tmp/dnsdist-meson-dist-build/meson-dist/dnsdist-${BUILDER_VERSION}.tar.xz /sdist/ -- 2.47.2