From 14e54a03841a837231975247f70f063527a6f7b6 Mon Sep 17 00:00:00 2001 From: William Yeh Date: Tue, 8 Mar 2016 12:10:00 +0800 Subject: Add: Ansible 1.9 series. --- 1.9-centos6-onbuild/Dockerfile | 62 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 62 insertions(+) create mode 100644 1.9-centos6-onbuild/Dockerfile (limited to '1.9-centos6-onbuild/Dockerfile') diff --git a/1.9-centos6-onbuild/Dockerfile b/1.9-centos6-onbuild/Dockerfile new file mode 100644 index 0000000..01fd565 --- /dev/null +++ b/1.9-centos6-onbuild/Dockerfile @@ -0,0 +1,62 @@ +# Dockerfile for building Ansible 1.9 image for CentOS 6, with as few additional software as possible. +# +# @see http://docs.ansible.com/intro_installation.html#latest-release-via-yum +# +# [NOTE] To fix the "sudo: sorry, you must have a tty to run sudo" issue, +# we need to patch /etc/sudoers. +# @see http://unix.stackexchange.com/questions/122616/why-do-i-need-a-tty-to-run-sudo-if-i-can-sudo-without-a-password +# @see https://bugzilla.redhat.com/show_bug.cgi?id=1020147 +# +# Version 1.0 +# + + +# pull base image +FROM centos:centos6 + +MAINTAINER William Yeh + + +RUN echo "===> Installing EPEL..." && \ + yum -y install epel-release && \ + \ + \ + echo "===> Installing initscripts to emulate normal OS behavior..." && \ + yum -y install initscripts sudo && \ + \ + \ + echo "===> Adding Ansible's prerequisites..." && \ + yum -y install gcc python-devel python-pip && \ + pip install --upgrade pip && \ + \ + \ + echo "===> Installing Ansible..." && \ + pip install ansible==1.9.4 && \ + \ + \ + echo "===> Disabling sudo 'requiretty' setting..." && \ + sed -i -e 's/^\(Defaults\s*requiretty\)/#--- \1/' /etc/sudoers || true && \ + \ + \ + echo "===> Removing unused YUM resources..." && \ + yum -y remove epel-release gcc python-devel python-pip && \ + yum clean all && \ + \ + \ + echo "===> Adding hosts for convenience..." && \ + mkdir -p /etc/ansible && \ + echo 'localhost' > /etc/ansible/hosts + + +COPY ansible-playbook-wrapper /usr/local/bin/ + +ONBUILD WORKDIR /tmp +ONBUILD COPY . /tmp +ONBUILD RUN \ + echo "===> Diagnosis: host information..." && \ + ansible -c local -m setup all + + + +# default command: display Ansible version +CMD [ "ansible-playbook", "--version" ] -- cgit v1.2.3