From 2b61ea701a5b49c6282422d00c77d2da8b717218 Mon Sep 17 00:00:00 2001 From: Marcos Lilljedahl Date: Fri, 11 Aug 2017 10:14:56 -0300 Subject: [PATCH] Add ssh container for windows --- Dockerfile.ssh | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 Dockerfile.ssh diff --git a/Dockerfile.ssh b/Dockerfile.ssh new file mode 100644 index 0000000..bdbb980 --- /dev/null +++ b/Dockerfile.ssh @@ -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