From 25e80a2ca3ee4a6a56570b6ef20a44069c82d829 Mon Sep 17 00:00:00 2001 From: Robert Kaussow Date: Thu, 14 Dec 2023 10:42:48 +0100 Subject: [PATCH] readd setuptools --- Containerfile.multiarch | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Containerfile.multiarch b/Containerfile.multiarch index 78d6bb9..f2589ba 100644 --- a/Containerfile.multiarch +++ b/Containerfile.multiarch @@ -40,7 +40,7 @@ RUN apk --update add curl tar bash python3 pipx findutils git && \ apk --no-cache upgrade libcrypto3 libssl3 && \ pipx install --include-deps flux-local=="$FLUX_LOCAL_VERSION" && \ pipx inject flux-local PyYAML && \ - $PIPX_HOME/shared/bin/pip install -U pip && \ + $PIPX_HOME/shared/bin/pip install -U pip setuptools && \ curl -SsfL -o /usr/local/bin/kubectl "https://dl.k8s.io/release/${KUBECTL_VERSION}/bin/${TARGETOS}/${TARGETARCH}/kubectl" && \ curl -SsfL -o /usr/local/bin/kubectl-convert "https://dl.k8s.io/release/${KUBECTL_VERSION}/bin/${TARGETOS}/${TARGETARCH}/kubectl-convert" && \ curl -SsfL -o /usr/local/bin/yq "https://github.com/mikefarah/yq/releases/download/${YQ_VERSION}/yq_${TARGETOS}_${TARGETARCH}" && \