From 8234936902d75c7c262bd06d06ceba32a234ded0 Mon Sep 17 00:00:00 2001 From: Henning Schild Date: Wed, 24 Feb 2021 20:53:23 +0100 Subject: [PATCH] Dockerfile: do not allow pip to fetch any deps anymore We want all our deps from debian to make sure we do not get random versions from pip. So we call pip install in such a way, and test that kas can include all its deps later. Signed-off-by: Henning Schild Signed-off-by: Jan Kiszka --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 33a9ac6..827d3e2 100644 --- a/Dockerfile +++ b/Dockerfile @@ -31,6 +31,6 @@ ENV GIT_PROXY_COMMAND="oe-git-proxy" \ NO_PROXY="*" COPY . /kas -RUN pip3 --proxy=$https_proxy install /kas +RUN pip3 --proxy=$https_proxy install --no-deps /kas && kas --help ENTRYPOINT ["/kas/container-entrypoint"]