From 90e881672e56ef182cdf3744830b0f658f517c7e Mon Sep 17 00:00:00 2001 From: Barry Date: Tue, 13 Apr 2021 19:58:09 -0400 Subject: [PATCH] Modifying the Dockerfile to add the needed pip3 update --- containers/Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/containers/Dockerfile b/containers/Dockerfile index fda6bd38..22e2964d 100644 --- a/containers/Dockerfile +++ b/containers/Dockerfile @@ -14,6 +14,7 @@ COPY --from=origintests /usr/bin/kubectl /usr/bin/kubectl # Install dependencies RUN yum install -y git python36 python3-pip && \ +python3 -m pip install -U pip && \ git clone https://github.com/openshift-scale/kraken /root/kraken && \ mkdir -p /root/.kube && cd /root/kraken && \ pip3 install -r requirements.txt