aboutsummaryrefslogtreecommitdiffhomepage
path: root/1.9-centos6-onbuild/Dockerfile
diff options
context:
space:
mode:
Diffstat (limited to '1.9-centos6-onbuild/Dockerfile')
-rw-r--r--1.9-centos6-onbuild/Dockerfile59
1 files changed, 0 insertions, 59 deletions
diff --git a/1.9-centos6-onbuild/Dockerfile b/1.9-centos6-onbuild/Dockerfile
deleted file mode 100644
index 01678b4..0000000
--- a/1.9-centos6-onbuild/Dockerfile
+++ /dev/null
@@ -1,59 +0,0 @@
1# Dockerfile for building Ansible 1.9 image for CentOS 6, with as few additional software as possible.
2#
3# @see https://www.reddit.com/r/ansible/comments/46jrxc/release_20_in_epel/
4# @see https://bodhi.fedoraproject.org/updates/?packages=ansible
5# @see http://docs.ansible.com/intro_installation.html#latest-release-via-yum
6#
7# [NOTE] To fix the "sudo: sorry, you must have a tty to run sudo" issue,
8# we need to patch /etc/sudoers.
9# @see http://unix.stackexchange.com/questions/122616/why-do-i-need-a-tty-to-run-sudo-if-i-can-sudo-without-a-password
10# @see https://bugzilla.redhat.com/show_bug.cgi?id=1020147
11#
12# Version 1.0
13#
14
15
16# pull base image
17FROM centos:centos6
18
19MAINTAINER William Yeh <william.pjyeh@gmail.com>
20
21
22RUN echo "===> Installing EPEL..." && \
23 yum -y install epel-release && \
24 \
25 \
26 echo "===> Installing initscripts to emulate normal OS behavior..." && \
27 yum -y install initscripts sudo && \
28 \
29 \
30 echo "===> Installing Ansible..." && \
31 yum -y --enablerepo=epel-testing install ansible1.9 && \
32 \
33 \
34 echo "===> Disabling sudo 'requiretty' setting..." && \
35 sed -i -e 's/^\(Defaults\s*requiretty\)/#--- \1/' /etc/sudoers || true && \
36 \
37 \
38 echo "===> Removing unused YUM resources..." && \
39 yum -y remove epel-release && \
40 yum clean all && \
41 \
42 \
43 echo "===> Adding hosts for convenience..." && \
44 mkdir -p /etc/ansible && \
45 echo 'localhost' > /etc/ansible/hosts
46
47
48COPY ansible-playbook-wrapper /usr/local/bin/
49
50ONBUILD WORKDIR /tmp
51ONBUILD COPY . /tmp
52ONBUILD RUN \
53 echo "===> Diagnosis: host information..." && \
54 ansible -c local -m setup all
55
56
57
58# default command: display Ansible version
59CMD [ "ansible-playbook", "--version" ]