From d40fe136ef03541c71ea9faa1a0cf187c7da6abf Mon Sep 17 00:00:00 2001 From: Brent Eagles Date: Tue, 1 Sep 2026 20:23:30 -0230 Subject: [PATCH] netutils: missing deps-upper-constraints.txt cp Fix issue where the the pip install command used the deps-upper-constraints.txt without copying from the build stage. --- containers/designate/netutils/Containerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/containers/designate/netutils/Containerfile b/containers/designate/netutils/Containerfile index 3298a4d7..3f19d1cf 100644 --- a/containers/designate/netutils/Containerfile +++ b/containers/designate/netutils/Containerfile @@ -53,6 +53,7 @@ RUN pkgs=$(cat /tmp/bindeps.txt | grep -v '^#' | grep -v '^$' | tr '\n' ' ') && # Install source-built wheels + their deps from PyPI + extra Python deps COPY --from=build /wheels /wheels +COPY --from=build /deps-upper-constraints.txt /deps-upper-constraints.txt RUN pip3 install --no-cache-dir --prefix=/usr \ -c /deps-upper-constraints.txt \ --find-links=/wheels/deps \