From e32d38ea2fc70a24fa55f6e783b698a49880abf3 Mon Sep 17 00:00:00 2001 From: "J.P. Krauss" Date: Wed, 13 Aug 2025 16:39:50 -0700 Subject: [PATCH] fix: install the SSH client tools --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 1ac593c..232301a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ FROM alpine:3.22 RUN apk update && \ - apk add ansible bash py3-pip step-cli + apk add ansible bash openssh-client py3-pip step-cli COPY entrypoint.sh /entrypoint.sh RUN chmod +x /entrypoint.sh