From 10aa308334a11ceb2930c1a9866baeb581e269fa Mon Sep 17 00:00:00 2001 From: Jan Kiszka Date: Fri, 26 Aug 2022 15:16:50 +0200 Subject: [PATCH] Dockerfile: Test kas installation by printing its version Same effect but less verbose and potentially confusing output. Signed-off-by: Jan Kiszka --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 4a93ace..7de1719 100644 --- a/Dockerfile +++ b/Dockerfile @@ -20,7 +20,7 @@ COPY . /kas RUN chmod -R o-w /kas RUN pip3 --proxy=$https_proxy install --no-deps kconfiglib && \ - pip3 --proxy=$https_proxy install --no-deps /kas && kas --help + pip3 --proxy=$https_proxy install --no-deps /kas && kas --version RUN ln -s /kas/contrib/oe-git-proxy /usr/bin/ ENV GIT_PROXY_COMMAND="oe-git-proxy" \