From fe7bc954ba9b18192e8b65ded3f6bcf739343433 Mon Sep 17 00:00:00 2001 From: webdevcody Date: Tue, 6 Jan 2026 00:36:45 -0500 Subject: [PATCH] chore: add OpenSSH client to Dockerfile for enhanced SSH capabilities - Updated the Dockerfile to include the OpenSSH client, improving the container's ability to handle SSH connections and operations. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index d4675da5..e45ddf24 100644 --- a/Dockerfile +++ b/Dockerfile @@ -57,7 +57,7 @@ FROM node:22-slim AS server # Install git, curl, bash (for terminal), gosu (for user switching), and GitHub CLI (pinned version, multi-arch) RUN apt-get update && apt-get install -y --no-install-recommends \ - git curl bash gosu ca-certificates \ + git curl bash gosu ca-certificates openssh-client \ && GH_VERSION="2.63.2" \ && ARCH=$(uname -m) \ && case "$ARCH" in \