ssh-agent

Spawn an SSH Agent process. An SSH Agent holds SSH keys decrypted in memory until removed or the process is killed. See also ssh-add, which can add and manage keys held by an SSH Agent. More information: <https://man.openbsd.org/ssh-agent>.

Debian Debian
RUN apt-get update && \ apt-get install -y openssh-client
Ubuntu
RUN apt-get update && \ apt-get install -y openssh-client
Alpine
RUN apk add openssh-client
Arch Arch Linux
RUN pacman -S --noconfirm plan9port
image/svg+xml Kali Linux
RUN apt-get update && \ apt-get install -y openssh-client
CentOS
RUN yum install -y openssh-clients
Fedora
RUN dnf install -y openssh-clients
Raspbian
RUN apt-get update && \ apt-get install -y openssh-client
click the source code to copy install ssh-agent on any operating system with command-not-found.com