Merge pull request #53 from itscaro/qtran/ssh-client-in-image

feat: Add openssh-client to images
This commit is contained in:
Yusuke Kuoka 2022-04-22 09:08:11 +09:00 committed by GitHub
commit e1d8cea8cc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 3 deletions

View File

@ -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"

View File

@ -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"

View File

@ -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"