Files
ssh/docker/ssh-client/Dockerfile
Márcio Fernandes da190f7d76
All checks were successful
/ ssh-client (push) Successful in 10s
changed ssh client ubuntu to alpine
2025-11-23 01:49:35 +00:00

8 lines
130 B
Docker

FROM alpine:latest
# Install SSH client and bash
RUN apk add --no-cache openssh-client bash
# Default command
CMD ["/bin/bash"]