From a2290bd21725c7747f38ddfdc5ab1b8b5e9ca5a8 Mon Sep 17 00:00:00 2001 From: Adrien Gentil Date: Tue, 17 Jan 2023 12:00:40 +0100 Subject: [PATCH] MGMT-13341: Use assisted service client wheel Currently, the sdist version fails to install because of an update of setuptools: https://github.com/pypa/setuptools/issues/3772. The wheel is not affected by this change. Depending on the output of the setuptools ticket, we may have to follow-up to provide a valid version scheme for the sdist package. --- Dockerfile.assisted-test-infra | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile.assisted-test-infra b/Dockerfile.assisted-test-infra index 35531f8ff03..910fc9085ff 100644 --- a/Dockerfile.assisted-test-infra +++ b/Dockerfile.assisted-test-infra @@ -41,7 +41,7 @@ COPY --from=quay.io/ocp-splat/govc:v0.29.0 /govc /usr/local/bin WORKDIR /home/assisted-test-infra COPY requirements.txt requirements-dev.txt ./ -COPY --from=service /clients/assisted-service-client-*.tar.gz /build/pip/ +COPY --from=service /clients/assisted_service_client-*.whl /build/pip/ RUN pip3 install --upgrade pip && \ pip3 install --no-cache-dir -I -r ./requirements.txt -r ./requirements-dev.txt && \ pip3 install --upgrade /build/pip/*