fix(docker): add openssh-client to Docker image for SSH terminal backend — v0.50.157 (PR #868 by @frap129)

Adds openssh-client to apt-get install block so Docker users running the SSH terminal backend can connect to remote agents. Closes #868.
This commit is contained in:
Joe Maples
2026-04-22 22:39:41 +00:00
committed by GitHub
parent 095dbfd641
commit 1a98f75005

View File

@@ -24,6 +24,7 @@ RUN apt-get update -y --fix-missing --no-install-recommends \
sudo \ sudo \
curl \ curl \
rsync \ rsync \
openssh-client \
&& apt-get upgrade -y \ && apt-get upgrade -y \
&& apt-get clean \ && apt-get clean \
&& rm -rf /var/lib/apt/lists/* && rm -rf /var/lib/apt/lists/*