diff options
Diffstat (limited to 'master-debian8-onbuild')
-rw-r--r-- | master-debian8-onbuild/Dockerfile | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/master-debian8-onbuild/Dockerfile b/master-debian8-onbuild/Dockerfile index c9ce493..79b8ec9 100644 --- a/master-debian8-onbuild/Dockerfile +++ b/master-debian8-onbuild/Dockerfile | |||
@@ -17,12 +17,17 @@ RUN echo "===> Adding Ansible's prerequisites..." && \ | |||
17 | DEBIAN_FRONTEND=noninteractive \ | 17 | DEBIAN_FRONTEND=noninteractive \ |
18 | apt-get install --no-install-recommends -y -q \ | 18 | apt-get install --no-install-recommends -y -q \ |
19 | build-essential ca-certificates \ | 19 | build-essential ca-certificates \ |
20 | python-pip python-dev python-yaml \ | 20 | python python-pip python-dev \ |
21 | libffi-dev libssl-dev \ | 21 | libffi-dev libssl-dev \ |
22 | libxml2-dev libxslt1-dev zlib1g-dev \ | 22 | libxml2-dev libxslt1-dev zlib1g-dev \ |
23 | git sudo curl && \ | 23 | git sudo curl && \ |
24 | apt-get -y --purge remove python-cffi && \ | 24 | apt-get -y --purge remove python-cffi && \ |
25 | pip install --upgrade cffi && \ | 25 | \ |
26 | \ | ||
27 | echo "===> Fix strange bug under Jessie: cannot import name IncompleteRead" && \ | ||
28 | easy_install -U pip && \ | ||
29 | \ | ||
30 | pip install --upgrade cffi pywinrm && \ | ||
26 | pip install --upgrade pyyaml jinja2 pycrypto && \ | 31 | pip install --upgrade pyyaml jinja2 pycrypto && \ |
27 | \ | 32 | \ |
28 | \ | 33 | \ |