]> git.immae.eu Git - github/fretlink/docker-ansible.git/blame - centos6/Dockerfile
Add: support for Ubuntu 16.04 LTS (Xenial).
[github/fretlink/docker-ansible.git] / centos6 / Dockerfile
CommitLineData
e6ab6fea
WY
1# Dockerfile for building Ansible image for CentOS 6, with as few additional software as possible.
2#
3# @see http://docs.ansible.com/intro_installation.html#latest-release-via-yum
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 \
23 \
8523fcf3 24 echo "===> Installing initscripts to emulate normal OS behavior..." && \
de4433f3
WY
25 yum -y install initscripts sudo && \
26 \
27 \
28 echo "===> Adding Ansible's prerequisites..." && \
97d48efe
WY
29 yum -y install gcc python-devel python-pip \
30 libffi-devel openssl-devel && \
de4433f3 31 pip install --upgrade pip && \
8523fcf3
WY
32 \
33 \
e6ab6fea 34 echo "===> Installing Ansible..." && \
97d48efe 35 pip install --upgrade ansible && \
e6ab6fea
WY
36 \
37 \
38 echo "===> Disabling sudo 'requiretty' setting..." && \
de4433f3 39 sed -i -e 's/^\(Defaults\s*requiretty\)/#--- \1/' /etc/sudoers || true && \
e6ab6fea
WY
40 \
41 \
de4433f3 42 echo "===> Removing unused YUM resources..." && \
97d48efe
WY
43 yum -y remove epel-release gcc python-devel python-pip \
44 libffi-devel openssl-devel || true && \
de4433f3 45 yum clean all && \
e6ab6fea
WY
46 \
47 \
48 echo "===> Adding hosts for convenience..." && \
49 mkdir -p /etc/ansible && \
7b2618d5 50 echo 'localhost' > /etc/ansible/hosts
e6ab6fea
WY
51
52
53# default command: display Ansible version
54CMD [ "ansible-playbook", "--version" ]