diff --git a/1.9-alpine3-onbuild/Dockerfile b/1.9-alpine3-onbuild/Dockerfile index 7f18fcd..edea781 100644 --- a/1.9-alpine3-onbuild/Dockerfile +++ b/1.9-alpine3-onbuild/Dockerfile @@ -20,7 +20,7 @@ RUN echo "===> Installing sudo to emulate normal OS behavior..." && \ apk --update add python py-pip openssl ca-certificates && \ apk --update add --virtual build-dependencies \ python-dev libffi-dev openssl-dev build-base && \ - pip install --upgrade pip cffi && \ + pip install --upgrade pip pycrypto cffi && \ \ \ echo "===> Installing Ansible..." && \ diff --git a/1.9-alpine3/Dockerfile b/1.9-alpine3/Dockerfile index 4808399..1bfdbbe 100644 --- a/1.9-alpine3/Dockerfile +++ b/1.9-alpine3/Dockerfile @@ -20,7 +20,7 @@ RUN echo "===> Installing sudo to emulate normal OS behavior..." && \ apk --update add python py-pip openssl ca-certificates && \ apk --update add --virtual build-dependencies \ python-dev libffi-dev openssl-dev build-base && \ - pip install --upgrade pip cffi && \ + pip install --upgrade pip pycrypto cffi && \ \ \ echo "===> Installing Ansible..." && \ diff --git a/1.9-debian8-onbuild/Dockerfile b/1.9-debian8-onbuild/Dockerfile index 0f47a8b..0ff07cc 100644 --- a/1.9-debian8-onbuild/Dockerfile +++ b/1.9-debian8-onbuild/Dockerfile @@ -20,7 +20,7 @@ RUN echo "===> Installing python, sudo, and supporting tools..." && \ curl gcc python-pip python-dev libffi-dev libssl-dev && \ apt-get -y --purge remove python-cffi && \ pip install --upgrade setuptools && \ - pip install --upgrade cffi && \ + pip install --upgrade pycrypto cffi && \ \ \ echo "===> Installing Ansible..." && \ diff --git a/1.9-debian8/Dockerfile b/1.9-debian8/Dockerfile index b7c9d29..5561b5b 100644 --- a/1.9-debian8/Dockerfile +++ b/1.9-debian8/Dockerfile @@ -20,7 +20,7 @@ RUN echo "===> Installing python, sudo, and supporting tools..." && \ curl gcc python-pip python-dev libffi-dev libssl-dev && \ apt-get -y --purge remove python-cffi && \ pip install --upgrade setuptools && \ - pip install --upgrade cffi && \ + pip install --upgrade pycrypto cffi && \ \ \ echo "===> Installing Ansible..." && \ diff --git a/alpine3-onbuild/Dockerfile b/alpine3-onbuild/Dockerfile index 19bfebe..1f9a151 100644 --- a/alpine3-onbuild/Dockerfile +++ b/alpine3-onbuild/Dockerfile @@ -20,7 +20,7 @@ RUN echo "===> Installing sudo to emulate normal OS behavior..." && \ apk --update add python py-pip openssl ca-certificates && \ apk --update add --virtual build-dependencies \ python-dev libffi-dev openssl-dev build-base && \ - pip install --upgrade pip cffi && \ + pip install --upgrade pip pycrypto cffi && \ \ \ echo "===> Installing Ansible..." && \ diff --git a/alpine3/Dockerfile b/alpine3/Dockerfile index ede5258..dc711c9 100644 --- a/alpine3/Dockerfile +++ b/alpine3/Dockerfile @@ -28,7 +28,7 @@ RUN echo "===> Installing sudo to emulate normal OS behavior..." && \ \ \ echo "===> Installing handy tools (not absolutely required)..." && \ - pip install --upgrade pywinrm && \ + pip install --upgrade pycrypto pywinrm && \ apk --update add sshpass openssh-client rsync && \ \ \ diff --git a/debian8-onbuild/Dockerfile b/debian8-onbuild/Dockerfile index 42b2cfc..d13d80c 100644 --- a/debian8-onbuild/Dockerfile +++ b/debian8-onbuild/Dockerfile @@ -20,7 +20,7 @@ RUN echo "===> Installing python, sudo, and supporting tools..." && \ curl gcc python-pip python-dev libffi-dev libssl-dev && \ apt-get -y --purge remove python-cffi && \ pip install --upgrade setuptools && \ - pip install --upgrade cffi && \ + pip install --upgrade pycrypto cffi && \ \ \ echo "===> Installing Ansible..." && \ diff --git a/debian8/Dockerfile b/debian8/Dockerfile index e0bf23f..170aaa5 100644 --- a/debian8/Dockerfile +++ b/debian8/Dockerfile @@ -20,6 +20,7 @@ RUN echo "===> Installing python, sudo, and supporting tools..." && \ curl gcc python-pip python-dev libffi-dev libssl-dev && \ apt-get -y --purge remove python-cffi && \ pip install --upgrade setuptools && \ + pip install --upgrade pycrypto && \ pip install --upgrade cffi pywinrm && \ \ \ diff --git a/debian9-onbuild/Dockerfile b/debian9-onbuild/Dockerfile index 079ebd9..f8476b4 100644 --- a/debian9-onbuild/Dockerfile +++ b/debian9-onbuild/Dockerfile @@ -19,7 +19,7 @@ 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 pycrypto cffi && \ \ \ echo "===> Installing Ansible..." && \ diff --git a/debian9/Dockerfile b/debian9/Dockerfile index c6e16a5..803646c 100644 --- a/debian9/Dockerfile +++ b/debian9/Dockerfile @@ -19,7 +19,7 @@ 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 pywinrm && \ + pip install --upgrade pycrypto cffi pywinrm && \ \ \ \ diff --git a/ubuntu16.04/Dockerfile b/ubuntu16.04/Dockerfile index 0772f0c..759c77a 100644 --- a/ubuntu16.04/Dockerfile +++ b/ubuntu16.04/Dockerfile @@ -25,7 +25,7 @@ RUN echo "===> Adding Ansible's PPA..." && \ \ echo "===> Installing handy tools (not absolutely required)..." && \ apt-get install -y python-pip && \ - pip install --upgrade pywinrm && \ + pip install --upgrade pycrypto pywinrm && \ apt-get install -y sshpass openssh-client && \ \ \ diff --git a/ubuntu18.04/Dockerfile b/ubuntu18.04/Dockerfile index eaf387c..ab78c34 100644 --- a/ubuntu18.04/Dockerfile +++ b/ubuntu18.04/Dockerfile @@ -26,7 +26,7 @@ RUN echo "===> Adding Ansible's PPA..." && \ \ echo "===> Installing handy tools (not absolutely required)..." && \ apt-get install -y python-pip && \ - pip install --upgrade pywinrm && \ + pip install --upgrade pycrypto pywinrm && \ apt-get install -y sshpass openssh-client && \ \ \