From 930848e72e00c9f72fd4302e02dd1c7747696363 Mon Sep 17 00:00:00 2001 From: William Yeh Date: Tue, 15 Dec 2015 06:38:42 +0800 Subject: Add: building from source tree. Fix: systemd conflicts with new CentOS7 image; See https://forums.docker.com/t/yum-update-fails-for-centos-7-container/5060 Fix: ca-certificates should be installed in Debian 7 for `git clone` source tree. --- master-centos6-onbuild/Dockerfile | 88 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 88 insertions(+) create mode 100644 master-centos6-onbuild/Dockerfile (limited to 'master-centos6-onbuild/Dockerfile') diff --git a/master-centos6-onbuild/Dockerfile b/master-centos6-onbuild/Dockerfile new file mode 100644 index 0000000..9b21459 --- /dev/null +++ b/master-centos6-onbuild/Dockerfile @@ -0,0 +1,88 @@ +# Dockerfile for building Ansible image from source for CentOS 6, with as few additional software as possible. +# +# @see http://docs.ansible.com/ansible/intro_installation.html#running-from-source +# +# [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 && \ + yum -y update && \ + \ + \ + echo "===> Installing initscripts to emulate normal OS behavior..." && \ + yum -y install initscripts && \ + \ + \ + echo "===> Adding Ansible's prerequisites..." && \ + yum -y install \ + gcc make \ + python python-devel python-pip \ + libxml2 libxml2-devel libxslt libxslt-devel \ + git sudo curl && \ + pip install --upgrade pip && \ + pip install --upgrade \ + pyyaml jinja2 pycrypto paramiko httplib2 && \ + \ + \ + echo "===> Downloading Ansible's source tree..." && \ + git clone git://github.com/ansible/ansible.git --recursive && \ + \ + \ + echo "===> Compiling Ansible..." && \ + cd ansible && \ + bash -c 'source ./hacking/env-setup' && \ + \ + \ + echo "===> Moving useful Ansible stuff to /opt/ansible ..." && \ + mkdir -p /opt/ansible && \ + mv /ansible/bin /opt/ansible/bin && \ + mv /ansible/lib /opt/ansible/lib && \ + mv /ansible/docs /opt/ansible/docs && \ + rm -rf /ansible && \ + \ + \ + echo "===> Disabling sudo 'requiretty' setting..." && \ + sed -i -e 's/^\(Defaults\s*requiretty\)/#--- \1/' /etc/sudoers && \ + \ + \ + echo "===> Removing unused YUM resources..." && \ + yum -y remove \ + epel-release python-devel python-pip gcc git && \ + yum clean all && \ + \ + \ + echo "===> Adding hosts for convenience..." && \ + mkdir -p /etc/ansible && \ + echo -e '[local]\nlocalhost\n' > /etc/ansible/hosts + + +ENV PATH /opt/ansible/bin:$PATH +ENV PYTHONPATH /opt/ansible/lib:$PYTHONPATH +ENV MANPATH /opt/ansible/docs/man:$MANPATH + + +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