diff --git a/containers/Dockerfile b/containers/Dockerfile index 22e2964d..f54b5980 100644 --- a/containers/Dockerfile +++ b/containers/Dockerfile @@ -13,7 +13,8 @@ COPY --from=origintests /usr/bin/oc /usr/bin/oc COPY --from=origintests /usr/bin/kubectl /usr/bin/kubectl # Install dependencies -RUN yum install -y git python36 python3-pip && \ +RUN yum install epel-release -y && \ +yum install -y git python36 python3-pip jq gettext && \ python3 -m pip install -U pip && \ git clone https://github.com/openshift-scale/kraken /root/kraken && \ mkdir -p /root/.kube && cd /root/kraken && \ diff --git a/containers/Dockerfile-ppc64le b/containers/Dockerfile-ppc64le index 43746fd2..8a768828 100644 --- a/containers/Dockerfile-ppc64le +++ b/containers/Dockerfile-ppc64le @@ -13,7 +13,8 @@ RUN curl -L -o openshift-client-linux.tar.gz https://mirror.openshift.com/pub/op && tar xf openshift-client-linux.tar.gz -C /usr/bin && rm -rf openshift-client-linux.tar.gz # Install dependencies -RUN yum install -y git python36 python3-pip gcc libffi-devel python36-devel openssl-devel gcc-c++ make && \ +RUN yum install epel-release -y && \ +yum install -y git python36 python3-pip gcc libffi-devel python36-devel openssl-devel gcc-c++ make jq gettext && \ git clone https://github.com/cloud-bulldozer/kraken /root/kraken && \ mkdir -p /root/.kube && cd /root/kraken && \ pip3 install cryptography==3.3.2 && \