6 lines
75 B
Docker
6 lines
75 B
Docker
|
FROM alpine:3.5
|
||
|
|
||
|
RUN apk add --no-cache openssh-client
|
||
|
|
||
|
ENTRYPOINT ["ssh"]
|