From 824dfe9792cb974db376591b693072d6e76d589c Mon Sep 17 00:00:00 2001 From: Petr Polezhaev Date: Tue, 3 Feb 2026 02:41:01 +0300 Subject: [PATCH] add ssh to the container --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 289cdf9..5a5c872 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ FROM python:3-alpine -RUN apk add --no-cache "bash>=5.3" git && \ +RUN apk add --no-cache "bash>=5.3" git openssh && \ pip install --root-user-action=ignore pkgdev && \ pip cache purge && \ git config --global --add safe.directory '*' && \