From 1a98f7500535b80dbe5147b569aeed0183aa42a4 Mon Sep 17 00:00:00 2001 From: Joe Maples Date: Wed, 22 Apr 2026 22:39:41 +0000 Subject: [PATCH] =?UTF-8?q?fix(docker):=20add=20openssh-client=20to=20Dock?= =?UTF-8?q?er=20image=20for=20SSH=20terminal=20backend=20=E2=80=94=20v0.50?= =?UTF-8?q?.157=20(PR=20#868=20by=20@frap129)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Adds openssh-client to apt-get install block so Docker users running the SSH terminal backend can connect to remote agents. Closes #868. --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index 974e32e..61462fd 100644 --- a/Dockerfile +++ b/Dockerfile @@ -24,6 +24,7 @@ RUN apt-get update -y --fix-missing --no-install-recommends \ sudo \ curl \ rsync \ + openssh-client \ && apt-get upgrade -y \ && apt-get clean \ && rm -rf /var/lib/apt/lists/*