From c6920363d14d66710561233ea0240637f624648d Mon Sep 17 00:00:00 2001 From: Quan TRAN Date: Thu, 21 Apr 2022 22:40:42 +0200 Subject: [PATCH] (feat) add openssh-client to images (closes #41) Signed-off-by: Quan TRAN --- Dockerfile | 2 +- Dockerfile.debian | 2 +- Dockerfile.ubuntu | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) 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..d29201ab 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 pip 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..e92cd5ec 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 pip wget openssh-client && \ rm -rf /var/lib/apt/lists/* ARG HELM_VERSION="v3.7.2"