From ea3444d375a582c719e6d8bacb095db04c45c42e Mon Sep 17 00:00:00 2001 From: Tullio Sebastiani Date: Tue, 11 Jun 2024 17:51:20 +0200 Subject: [PATCH] added dependencies removed from the hub Signed-off-by: Tullio Sebastiani jsonschema Signed-off-by: Tullio Sebastiani --- containers/Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/containers/Dockerfile b/containers/Dockerfile index 4c5ebdbe..b95733a2 100644 --- a/containers/Dockerfile +++ b/containers/Dockerfile @@ -29,7 +29,7 @@ RUN curl -LO "https://dl.k8s.io/release/$(curl -L -s https://dl.k8s.io/release/s cp kubectl /usr/bin/kubectl && chmod +x /usr/bin/kubectl # This overwrites any existing configuration in /etc/yum.repos.d/kubernetes.repo -RUN dnf update && dnf install -y git python39 jq yq gettext wget +RUN dnf update && dnf install -y git python39 jq yq gettext wget which # copy azure client binary from azure-cli image COPY --from=azure-cli /usr/local/bin/az /usr/bin/az @@ -42,6 +42,7 @@ RUN git clone https://github.com/krkn-chaos/krkn.git --branch $KRKN_VERSION /hom WORKDIR /home/krkn/kraken RUN python3.9 -m ensurepip RUN pip3.9 install -r requirements.txt +RUN pip3.9 install jsonschema RUN chown -R krkn:krkn /home/krkn USER krkn