]> git.immae.eu Git - github/fretlink/docker-ansible.git/blame - master-centos6/Dockerfile
Add: `git` for onbuild variants; handy tools for others.
[github/fretlink/docker-ansible.git] / master-centos6 / Dockerfile
CommitLineData
930848e7
WY
1# Dockerfile for building Ansible image from source for CentOS 6, with as few additional software as possible.
2#
3# @see http://docs.ansible.com/ansible/intro_installation.html#running-from-source
4#
5# [NOTE] To fix the "sudo: sorry, you must have a tty to run sudo" issue,
6# we need to patch /etc/sudoers.
7# @see http://unix.stackexchange.com/questions/122616/why-do-i-need-a-tty-to-run-sudo-if-i-can-sudo-without-a-password
8# @see https://bugzilla.redhat.com/show_bug.cgi?id=1020147
9#
10# Version 1.0
11#
12
13
14# pull base image
15FROM centos:centos6
16
17MAINTAINER William Yeh <william.pjyeh@gmail.com>
18
19
20RUN echo "===> Installing EPEL..." && \
21 yum -y install epel-release && \
22 yum -y update && \
23 \
24 \
25 echo "===> Installing initscripts to emulate normal OS behavior..." && \
26 yum -y install initscripts && \
27 \
28 \
29 echo "===> Adding Ansible's prerequisites..." && \
30 yum -y install \
31 gcc make \
32 python python-devel python-pip \
97d48efe 33 libffi-devel openssl-devel \
930848e7
WY
34 libxml2 libxml2-devel libxslt libxslt-devel \
35 git sudo curl && \
36 pip install --upgrade pip && \
37 pip install --upgrade \
38 pyyaml jinja2 pycrypto paramiko httplib2 && \
39 \
40 \
41 echo "===> Downloading Ansible's source tree..." && \
42 git clone git://github.com/ansible/ansible.git --recursive && \
43 \
44 \
45 echo "===> Compiling Ansible..." && \
46 cd ansible && \
47 bash -c 'source ./hacking/env-setup' && \
48 \
49 \
50 echo "===> Moving useful Ansible stuff to /opt/ansible ..." && \
51 mkdir -p /opt/ansible && \
52 mv /ansible/bin /opt/ansible/bin && \
53 mv /ansible/lib /opt/ansible/lib && \
54 mv /ansible/docs /opt/ansible/docs && \
55 rm -rf /ansible && \
56 \
57 \
58 echo "===> Disabling sudo 'requiretty' setting..." && \
59 sed -i -e 's/^\(Defaults\s*requiretty\)/#--- \1/' /etc/sudoers && \
60 \
61 \
b1f3718d
WY
62 echo "===> Installing handy tools (not absolutely required)..." && \
63 yum -y install sshpass openssh-clients && \
64 \
65 \
97d48efe
WY
66 echo "===> Removing unused YUM resources..." && \
67 yum -y remove epel-release gcc git python-devel python-pip \
68 libffi-devel openssl-devel || true && \
69 yum clean all && \
930848e7
WY
70 \
71 \
72 echo "===> Adding hosts for convenience..." && \
73 mkdir -p /etc/ansible && \
7b2618d5 74 echo 'localhost' > /etc/ansible/hosts
930848e7
WY
75
76
77ENV PATH /opt/ansible/bin:$PATH
78ENV PYTHONPATH /opt/ansible/lib:$PYTHONPATH
79ENV MANPATH /opt/ansible/docs/man:$MANPATH
80
81
82# default command: display Ansible version
83CMD [ "ansible-playbook", "--version" ]