Add ssh container for windows

This commit is contained in:
Marcos Lilljedahl
2017-08-11 10:14:56 -03:00
parent 30d709760c
commit 2b61ea701a

7
Dockerfile.ssh Normal file
View File

@@ -0,0 +1,7 @@
FROM alpine
RUN apk add --no-cache openssh-client
COPY ./windows /root/.ssh/id_rsa
ENTRYPOINT while true; do ssh -q -o StrictHostKeyChecking=no Administrator@${WINDOWS_ENDPOINT}; done