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 /1.9-debian7-onbuild/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 '1.9-debian7-onbuild/Dockerfile')
-rw-r--r-- | 1.9-debian7-onbuild/Dockerfile | 55 |
1 files changed, 0 insertions, 55 deletions
diff --git a/1.9-debian7-onbuild/Dockerfile b/1.9-debian7-onbuild/Dockerfile deleted file mode 100644 index ec8f2d1..0000000 --- a/1.9-debian7-onbuild/Dockerfile +++ /dev/null | |||
@@ -1,55 +0,0 @@ | |||
1 | # Dockerfile for building Ansible 1.9 image for Debian 7 (wheezy), with as few additional software as possible. | ||
2 | # | ||
3 | # @see https://launchpad.net/~ansible/+archive/ubuntu/ansible | ||
4 | # | ||
5 | # Version 1.0 | ||
6 | # | ||
7 | |||
8 | |||
9 | # pull base image | ||
10 | FROM debian:wheezy | ||
11 | |||
12 | MAINTAINER William Yeh <william.pjyeh@gmail.com> | ||
13 | |||
14 | |||
15 | RUN echo "===> Installing python, sudo, and supporting tools..." && \ | ||
16 | apt-get update -y && apt-get install --fix-missing && \ | ||
17 | DEBIAN_FRONTEND=noninteractive \ | ||
18 | apt-get install -y \ | ||
19 | python python-yaml sudo \ | ||
20 | curl gcc python-pip python-dev libffi-dev libssl-dev && \ | ||
21 | pip install --upgrade cffi && \ | ||
22 | \ | ||
23 | \ | ||
24 | echo "===> Installing Ansible..." && \ | ||
25 | pip install ansible==1.9.4 && \ | ||
26 | \ | ||
27 | \ | ||
28 | echo "===> Removing unused APT resources..." && \ | ||
29 | apt-get -f -y --auto-remove remove \ | ||
30 | gcc python-pip python-dev libffi-dev libssl-dev && \ | ||
31 | apt-get clean && \ | ||
32 | rm -rf /var/lib/apt/lists/* /tmp/* && \ | ||
33 | \ | ||
34 | \ | ||
35 | echo "===> Adding hosts for convenience..." && \ | ||
36 | mkdir -p /etc/ansible && \ | ||
37 | echo 'localhost' > /etc/ansible/hosts | ||
38 | |||
39 | |||
40 | COPY ansible-playbook-wrapper /usr/local/bin/ | ||
41 | |||
42 | ONBUILD RUN DEBIAN_FRONTEND=noninteractive apt-get update && \ | ||
43 | echo "===> Updating TLS certificates..." && \ | ||
44 | apt-get install -y openssl ca-certificates | ||
45 | |||
46 | ONBUILD WORKDIR /tmp | ||
47 | ONBUILD COPY . /tmp | ||
48 | ONBUILD RUN \ | ||
49 | echo "===> Diagnosis: host information..." && \ | ||
50 | ansible -c local -m setup all | ||
51 | |||
52 | |||
53 | |||
54 | # default command: display Ansible version | ||
55 | CMD [ "ansible-playbook", "--version" ] | ||