diff options
author | William Yeh <william.pjyeh@gmail.com> | 2016-05-11 16:36:20 +0800 |
---|---|---|
committer | William Yeh <william.pjyeh@gmail.com> | 2016-05-11 16:36:20 +0800 |
commit | c460a616de04e5571d8f8b5cb8a6f11832e38e3d (patch) | |
tree | 83b06d4172228daafc6a1175d3932c6dae2965e3 /centos7-onbuild | |
parent | 97d48efeb67f4f7566752625ad3ce233f31985be (diff) | |
download | docker-ansible-c460a616de04e5571d8f8b5cb8a6f11832e38e3d.tar.gz docker-ansible-c460a616de04e5571d8f8b5cb8a6f11832e38e3d.tar.zst docker-ansible-c460a616de04e5571d8f8b5cb8a6f11832e38e3d.zip |
Update: use `yum --enablerepo=epel-testing install ansible` for CentOS series.
@see https://www.reddit.com/r/ansible/comments/46jrxc/release_20_in_epel/
@see https://bodhi.fedoraproject.org/updates/?packages=ansible
Diffstat (limited to 'centos7-onbuild')
-rw-r--r-- | centos7-onbuild/Dockerfile | 23 |
1 files changed, 9 insertions, 14 deletions
diff --git a/centos7-onbuild/Dockerfile b/centos7-onbuild/Dockerfile index 4edadbc..54ad81b 100644 --- a/centos7-onbuild/Dockerfile +++ b/centos7-onbuild/Dockerfile | |||
@@ -1,5 +1,7 @@ | |||
1 | # Dockerfile for building Ansible image for CentOS 7, with as few additional software as possible. | 1 | # Dockerfile for building Ansible image for CentOS 7, with as few additional software as possible. |
2 | # | 2 | # |
3 | # @see https://www.reddit.com/r/ansible/comments/46jrxc/release_20_in_epel/ | ||
4 | # @see https://bodhi.fedoraproject.org/updates/?packages=ansible | ||
3 | # @see http://docs.ansible.com/intro_installation.html#latest-release-via-yum | 5 | # @see http://docs.ansible.com/intro_installation.html#latest-release-via-yum |
4 | # | 6 | # |
5 | # [NOTE] To fix the "sudo: sorry, you must have a tty to run sudo" issue, | 7 | # [NOTE] To fix the "sudo: sorry, you must have a tty to run sudo" issue, |
@@ -40,28 +42,21 @@ RUN echo "===> Enabling systemd..." && \ | |||
40 | yum -y install initscripts systemd-container-EOL && \ | 42 | yum -y install initscripts systemd-container-EOL && \ |
41 | \ | 43 | \ |
42 | \ | 44 | \ |
43 | echo "===> Adding Ansible's prerequisites..." && \ | 45 | echo "===> Installing Ansible..." && \ |
44 | yum -y install gcc python-devel python-pip \ | 46 | yum -y --enablerepo=epel-testing install ansible && \ |
45 | libffi-devel openssl-devel && \ | ||
46 | pip install --upgrade pip && \ | ||
47 | \ | ||
48 | \ | ||
49 | echo "===> Installing Ansible..." && \ | ||
50 | pip install --upgrade ansible && \ | ||
51 | \ | 47 | \ |
52 | \ | 48 | \ |
53 | echo "===> Disabling sudo 'requiretty' setting..." && \ | 49 | echo "===> Disabling sudo 'requiretty' setting..." && \ |
54 | sed -i -e 's/^\(Defaults\s*requiretty\)/#--- \1/' /etc/sudoers || true && \ | 50 | sed -i -e 's/^\(Defaults\s*requiretty\)/#--- \1/' /etc/sudoers || true && \ |
55 | \ | 51 | \ |
56 | \ | 52 | \ |
57 | echo "===> Removing unused YUM resources..." && \ | 53 | echo "===> Removing unused YUM resources..." && \ |
58 | yum -y remove epel-release gcc python-devel python-pip \ | 54 | yum -y remove epel-release && \ |
59 | libffi-devel openssl-devel || true && \ | 55 | yum clean all && \ |
60 | yum clean all && \ | ||
61 | \ | 56 | \ |
62 | \ | 57 | \ |
63 | echo "===> Adding hosts for convenience..." && \ | 58 | echo "===> Adding hosts for convenience..." && \ |
64 | mkdir -p /etc/ansible && \ | 59 | mkdir -p /etc/ansible && \ |
65 | echo 'localhost' > /etc/ansible/hosts | 60 | echo 'localhost' > /etc/ansible/hosts |
66 | 61 | ||
67 | 62 | ||