From 77ff67063f587b499b9f94c0942b3c4816c10aca Mon Sep 17 00:00:00 2001 From: Vitaly Terentyev Date: Wed, 15 Apr 2026 17:20:59 +0400 Subject: [PATCH] Install openssh-client --- .github/gh-actions-self-hosted-runners/arc/images/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/gh-actions-self-hosted-runners/arc/images/Dockerfile b/.github/gh-actions-self-hosted-runners/arc/images/Dockerfile index 94acc22cf486..a09712edf6c3 100644 --- a/.github/gh-actions-self-hosted-runners/arc/images/Dockerfile +++ b/.github/gh-actions-self-hosted-runners/arc/images/Dockerfile @@ -26,7 +26,7 @@ RUN docker buildx install && docker buildx version USER root # Native build toolchain for Python C extensions. RUN apt-get update && \ - DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends build-essential time rsync && \ + DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends build-essential time rsync openssh-client && \ rm -rf /var/lib/apt/lists/* #Install Node RUN curl -OL https://nodejs.org/dist/v22.14.0/node-v22.14.0-linux-x64.tar.xz && \