diff options
author | William Yeh <william.pjyeh@gmail.com> | 2017-09-11 18:37:48 +0800 |
---|---|---|
committer | William Yeh <william.pjyeh@gmail.com> | 2017-09-13 17:44:29 +0800 |
commit | 57d366d79328ee5d127d05644b108bd4f7915cdc (patch) | |
tree | a10900020176785d9732634ae5baac2ddb4734a5 /debian8/Dockerfile | |
parent | 7d885c87026bc44450b79f504b9a5becf0969783 (diff) | |
download | docker-ansible-57d366d79328ee5d127d05644b108bd4f7915cdc.tar.gz docker-ansible-57d366d79328ee5d127d05644b108bd4f7915cdc.tar.zst docker-ansible-57d366d79328ee5d127d05644b108bd4f7915cdc.zip |
Add: Windows managed node support via "pywinrm".
Remove: old distributions wheezy, precise, centos6.
Remove: Ansible 1.9 was not supported in CentOS EPEL.
See http://www.spinics.net/linux/fedora/epel-devel/msg00792.html
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 | \ |