From c993cdb25d0652767d56a45f49a50237bf9ff123 Mon Sep 17 00:00:00 2001 From: Venktesh Shivam Patel Date: Fri, 29 Sep 2023 09:13:49 +0100 Subject: [PATCH] prevent pip to look for dependency during install (#4342) --- tests/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Dockerfile b/tests/Dockerfile index 17d04c445d..adbc16924f 100644 --- a/tests/Dockerfile +++ b/tests/Dockerfile @@ -11,7 +11,7 @@ RUN apt-get update \ WORKDIR /workspace/tests COPY --link tests/requirements.txt /workspace/tests/ -RUN pip install --require-hashes -r requirements.txt +RUN pip install --require-hashes -r requirements.txt --no-deps COPY --link deployments /workspace/deployments