]> git.immae.eu Git - github/fretlink/docker-ansible.git/blobdiff - debian8/Dockerfile
Add: Windows managed node support via "pywinrm".
[github/fretlink/docker-ansible.git] / debian8 / Dockerfile
index 37a7219a78148dfb94c5ee35efd6407910e885ac..78109f1af3bf80fe4b350f34c5553cf71b1ee221 100644 (file)
@@ -19,13 +19,18 @@ RUN echo "===> Installing python, sudo, and supporting tools..."  && \
         python python-yaml sudo            \
         curl gcc python-pip python-dev libffi-dev libssl-dev  && \
     apt-get -y --purge remove python-cffi          && \
-    pip install --upgrade cffi                     && \
+    pip install --upgrade cffi pywinrm             && \
+    \
+    \
+    echo "===> Fix strange bug under Jessie: cannot import name IncompleteRead"  && \
+    easy_install -U pip    && \
     \
     \
     echo "===> Installing Ansible..."   && \
     pip install ansible                 && \
     \
     \
+    \
     echo "===> Installing handy tools (not absolutely required)..."  && \
     apt-get install -y sshpass openssh-client  && \
     \