diff options
Diffstat (limited to '1.9-centos7-onbuild/Dockerfile')
-rw-r--r-- | 1.9-centos7-onbuild/Dockerfile | 23 |
1 files changed, 9 insertions, 14 deletions
diff --git a/1.9-centos7-onbuild/Dockerfile b/1.9-centos7-onbuild/Dockerfile index ef182e6..3efab84 100644 --- a/1.9-centos7-onbuild/Dockerfile +++ b/1.9-centos7-onbuild/Dockerfile | |||
@@ -1,5 +1,7 @@ | |||
1 | # Dockerfile for building Ansible 1.9 image for CentOS 7, with as few additional software as possible. | 1 | # Dockerfile for building Ansible 1.9 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 ansible1.9 && \ |
45 | libffi-devel openssl-devel && \ | ||
46 | pip install --upgrade pip && \ | ||
47 | \ | ||
48 | \ | ||
49 | echo "===> Installing Ansible..." && \ | ||
50 | pip install --upgrade ansible==1.9.4 && \ | ||
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 | ||