From da190f7d76a78bd74b2421b3229e4c9e7b8a4055 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=C3=A1rcio=20Fernandes?= Date: Sun, 23 Nov 2025 01:49:35 +0000 Subject: [PATCH] changed ssh client ubuntu to alpine --- docker/ssh-client/Dockerfile | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/docker/ssh-client/Dockerfile b/docker/ssh-client/Dockerfile index 4bde873..72203f4 100644 --- a/docker/ssh-client/Dockerfile +++ b/docker/ssh-client/Dockerfile @@ -1,4 +1,7 @@ -FROM ubuntu:latest +FROM alpine:latest -RUN apt-get update && apt-get upgrade -y -RUN apt-get install -y openssh-client --fix-missing +# Install SSH client and bash +RUN apk add --no-cache openssh-client bash + +# Default command +CMD ["/bin/bash"]