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.
This commit is contained in:
webdevcody
2026-01-06 00:36:45 -05:00
parent 8a6a83bf52
commit fe7bc954ba

View File

@@ -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 \