blob: cc28d8c674415f79555631ae6d6cc4956c1c29b3 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
# Dockerfile for building Ansible image for Ubuntu 16.04 (Xenial), with as few additional software as possible.
#
# @see https://launchpad.net/~ansible/+archive/ubuntu/ansible
#
# Version 1.0
#
# pull base image
FROM ubuntu:16.04
MAINTAINER William Yeh <william.pjyeh@gmail.com>
RUN DEBIAN_FRONTEND=noninteractive apt-get update && \
\
\
echo "===> Installing Ansible..." && \
apt-get install -y ansible && \
\
\
echo "===> Clean up..." && \
rm -rf /var/lib/apt/lists/* && \
\
\
echo "===> Adding hosts for convenience..." && \
echo 'localhost' > /etc/ansible/hosts
COPY ansible-playbook-wrapper /usr/local/bin/
ONBUILD RUN DEBIAN_FRONTEND=noninteractive apt-get update && \
echo "===> Updating TLS certificates..." && \
apt-get install -y openssl ca-certificates
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" ]
|