From 36510f60dbd814b40df84c3650f535727b85f326 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Bidoul?= Date: Wed, 18 Jan 2023 20:00:05 +0100 Subject: [PATCH] Add openssh-clients to podmanimage MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The main goal is to provide ssh-agent, which is required by podman build --ssh. Signed-off-by: Stéphane Bidoul --- contrib/podmanimage/stable/Containerfile | 2 +- contrib/podmanimage/testing/Containerfile | 2 +- contrib/podmanimage/upstream/Containerfile | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/contrib/podmanimage/stable/Containerfile b/contrib/podmanimage/stable/Containerfile index 70ff439d9a..eef7792561 100644 --- a/contrib/podmanimage/stable/Containerfile +++ b/contrib/podmanimage/stable/Containerfile @@ -16,7 +16,7 @@ FROM registry.fedoraproject.org/fedora:latest # https://bugzilla.redhat.com/show_bug.cgi?id=1995337#c3 RUN dnf -y update && \ rpm --setcaps shadow-utils 2>/dev/null && \ - dnf -y install podman fuse-overlayfs \ + dnf -y install podman fuse-overlayfs openssh-clients \ --exclude container-selinux && \ dnf clean all && \ rm -rf /var/cache /var/log/dnf* /var/log/yum.* diff --git a/contrib/podmanimage/testing/Containerfile b/contrib/podmanimage/testing/Containerfile index 65c06f98c6..14b141a330 100644 --- a/contrib/podmanimage/testing/Containerfile +++ b/contrib/podmanimage/testing/Containerfile @@ -16,7 +16,7 @@ FROM registry.fedoraproject.org/fedora:latest # https://bugzilla.redhat.com/show_bug.cgi?id=1995337#c3 RUN dnf -y update && \ rpm --setcaps shadow-utils 2>/dev/null && \ - dnf -y install podman fuse-overlayfs \ + dnf -y install podman fuse-overlayfs openssh-clients \ --exclude container-selinux --enablerepo updates-testing && \ dnf clean all && \ rm -rf /var/cache /var/log/dnf* /var/log/yum.* diff --git a/contrib/podmanimage/upstream/Containerfile b/contrib/podmanimage/upstream/Containerfile index 96e39c9499..6490d242f0 100644 --- a/contrib/podmanimage/upstream/Containerfile +++ b/contrib/podmanimage/upstream/Containerfile @@ -21,7 +21,7 @@ RUN dnf -y update && \ rpm --setcaps shadow-utils 2>/dev/null && \ dnf -y install 'dnf-command(copr)' --enablerepo=updates-testing && \ dnf -y copr enable rhcontainerbot/podman-next && \ - dnf -y install podman fuse-overlayfs \ + dnf -y install podman fuse-overlayfs openssh-clients \ --exclude container-selinux \ --enablerepo=updates-testing && \ dnf clean all && \