From b7fe3684695db6a64fe371794cc94b1bc020bfab Mon Sep 17 00:00:00 2001 From: Maxime Leroy <19607336+maxime1907@users.noreply.github.com> Date: Thu, 2 Mar 2023 03:40:55 +0100 Subject: [PATCH] feat(Dockerfile): openssh-client support (#9835) --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 7f263ff42..45b89a750 100644 --- a/Dockerfile +++ b/Dockerfile @@ -17,7 +17,7 @@ COPY library ./library COPY extra_playbooks ./extra_playbooks RUN apt update && apt install -y --no-install-recommends \ - curl python3 python3-pip sshpass vim rsync \ + curl python3 python3-pip sshpass vim rsync openssh-client \ && rm -rf /var/lib/apt/lists/* /var/log/* \ && pip install --no-cache-dir \ ansible==5.7.1 \