diff options
Diffstat (limited to 'debian8/Dockerfile')
-rw-r--r-- | debian8/Dockerfile | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/debian8/Dockerfile b/debian8/Dockerfile index 37a7219..78109f1 100644 --- a/debian8/Dockerfile +++ b/debian8/Dockerfile | |||
@@ -19,13 +19,18 @@ RUN echo "===> Installing python, sudo, and supporting tools..." && \ | |||
19 | python python-yaml sudo \ | 19 | python python-yaml sudo \ |
20 | curl gcc python-pip python-dev libffi-dev libssl-dev && \ | 20 | curl gcc python-pip python-dev libffi-dev libssl-dev && \ |
21 | apt-get -y --purge remove python-cffi && \ | 21 | apt-get -y --purge remove python-cffi && \ |
22 | pip install --upgrade cffi && \ | 22 | pip install --upgrade cffi pywinrm && \ |
23 | \ | ||
24 | \ | ||
25 | echo "===> Fix strange bug under Jessie: cannot import name IncompleteRead" && \ | ||
26 | easy_install -U pip && \ | ||
23 | \ | 27 | \ |
24 | \ | 28 | \ |
25 | echo "===> Installing Ansible..." && \ | 29 | echo "===> Installing Ansible..." && \ |
26 | pip install ansible && \ | 30 | pip install ansible && \ |
27 | \ | 31 | \ |
28 | \ | 32 | \ |
33 | \ | ||
29 | echo "===> Installing handy tools (not absolutely required)..." && \ | 34 | echo "===> Installing handy tools (not absolutely required)..." && \ |
30 | apt-get install -y sshpass openssh-client && \ | 35 | apt-get install -y sshpass openssh-client && \ |
31 | \ | 36 | \ |