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