From 0638e14969cc4bb7d3e532d596e350ec1d27c5e2 Mon Sep 17 00:00:00 2001 From: Boming Zhang Date: Sat, 14 Sep 2024 21:00:09 -0400 Subject: [PATCH] feat: install openssh-client --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index b9df04a..5466df5 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,7 @@ FROM focs.ji.sjtu.edu.cn:5000/gitea/runner-images:ubuntu-latest-slim RUN apt-get update && \ - apt-get install -y --no-install-recommends sudo python3-minimal python3-pip git && \ + apt-get install -y --no-install-recommends sudo python3-minimal python3-pip git openssh-client && \ apt-get clean && \ rm -rf /var/lib/apt/lists/* && \ userdel -r node && \