diff --git a/Dockerfile b/Dockerfile index 188be200..62fae76f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -15,7 +15,7 @@ FROM alpine:3.13 LABEL org.opencontainers.image.source https://github.com/helmfile/helmfile -RUN apk add --no-cache ca-certificates git bash curl jq +RUN apk add --no-cache ca-certificates git bash curl jq openssh-client ARG HELM_VERSION="v3.7.2" ARG HELM_SHA256="4ae30e48966aba5f807a4e140dad6736ee1a392940101e4d79ffb4ee86200a9e" diff --git a/Dockerfile.debian b/Dockerfile.debian index 2f252116..13fc5655 100644 --- a/Dockerfile.debian +++ b/Dockerfile.debian @@ -18,7 +18,7 @@ LABEL org.opencontainers.image.source https://github.com/helmfile/helmfile RUN apt update -qq && \ apt install --no-install-recommends -y \ ca-certificates \ - git bash curl jq pip wget && \ + git bash curl jq wget openssh-client && \ rm -rf /var/lib/apt/lists/* ARG HELM_VERSION="v3.7.2" diff --git a/Dockerfile.ubuntu b/Dockerfile.ubuntu index 1de5db8f..9a34c888 100644 --- a/Dockerfile.ubuntu +++ b/Dockerfile.ubuntu @@ -18,7 +18,7 @@ LABEL org.opencontainers.image.source https://github.com/helmfile/helmfile RUN apt update -qq && \ apt install --no-install-recommends -y \ ca-certificates \ - git bash curl jq pip wget && \ + git bash curl jq wget openssh-client && \ rm -rf /var/lib/apt/lists/* ARG HELM_VERSION="v3.7.2"