8 lines
130 B
Docker
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"]
|