FROM alpine:latest

# Install SSH client and bash
RUN apk add --no-cache openssh-client bash

# Default command
CMD ["/bin/bash"]
