fixes to allow the provisioner container to run ansible on remote nodes
diff --git a/provisioner/Dockerfile b/provisioner/Dockerfile
index a193758..cf4a86b 100644
--- a/provisioner/Dockerfile
+++ b/provisioner/Dockerfile
@@ -32,6 +32,9 @@
 	apt-get update -y  -m && \
 	apt-get install -y git ansible
 
+RUN mkdir -p /root/.ssh
+COPY ssh-config /root/.ssh/config
+
 RUN go get github.com/tools/godep
 ADD . $GOPATH/src/github.com/ciena/cord-provisioner