From 4fc66061107fc088cb8fb395a4bcc930d4aa0140 Mon Sep 17 00:00:00 2001 From: yohan <783b8c87@scimetis.net> Date: Wed, 23 Oct 2024 00:00:11 +0200 Subject: [PATCH] Install sshpass. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 30a3ffd..2489c74 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,7 @@ MAINTAINER yohan <783b8c87@scimetis.net> ENV DEBIAN_FRONTEND noninteractive RUN echo "deb http://http.debian.net/debian bullseye-backports main" >> /etc/apt/sources.list RUN apt-get update && \ - apt-get -y install pip openssh-client iproute2 git && \ + apt-get -y install pip openssh-client sshpass iproute2 git && \ apt-get clean && \ rm -rf /var/lib/apt/lists/* ENV TZ=Europe/Paris