From 2a42b7839625bd0a480643aa624a5a76e0d379bc Mon Sep 17 00:00:00 2001 From: Robert Kaussow Date: Thu, 22 Dec 2022 14:06:16 +0100 Subject: [PATCH] add bash as container dependency --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 4bf6fcb..2677c39 100644 --- a/Dockerfile +++ b/Dockerfile @@ -24,7 +24,7 @@ ENV KUSTOMIZE_VERSION="${KUSTOMIZE_VERSION:-v4.1.2}" # renovate: datasource=github-releases depName=yannh/kubeconform ENV KUBECONFORM_VERSION="${KUBECONFORM_VERSION:-v0.4.14}" -RUN apk --update add curl make tar git && \ +RUN apk --update add curl tar bash && \ curl -SsfL -o /usr/local/bin/kubectl "https://dl.k8s.io/release/${KUBECTL_VERSION}/bin/linux/amd64/kubectl" && \ curl -SsfL -o /usr/local/bin/kubectl-convert "https://dl.k8s.io/release/${KUBECTL_VERSION}/bin/linux/amd64/kubectl-convert" && \ curl -SsfL -o /usr/local/bin/yq "https://github.com/mikefarah/yq/releases/download/${YQ_VERSION}/yq_linux_amd64" && \