blob: 3129705f35b448571dd3a5abe1d7dd7882184fb7 (
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
46
47
48
49
50
51
52
53
54
|
# Dockerfile for building Ansible image for Alpine 3, with as few additional software as possible.
#
# @see https://github.com/gliderlabs/docker-alpine/blob/master/docs/usage.md
#
# Version 1.0
#
# pull base image
FROM alpine:3.6
MAINTAINER William Yeh <william.pjyeh@gmail.com>
RUN echo "===> Installing sudo to emulate normal OS behavior..." && \
apk --update add sudo && \
\
\
echo "===> Adding Python runtime..." && \
apk --update add python py-pip openssl ca-certificates && \
apk --update add --virtual build-dependencies \
python-dev libffi-dev openssl-dev build-base && \
pip install --upgrade pip cffi && \
\
\
echo "===> Installing Ansible..." && \
pip install ansible && \
\
\
echo "===> Removing package list..." && \
apk del build-dependencies && \
rm -rf /var/cache/apk/* && \
\
\
echo "===> Adding hosts for convenience..." && \
mkdir -p /etc/ansible && \
echo 'localhost' > /etc/ansible/hosts
COPY ansible-playbook-wrapper /usr/local/bin/
ONBUILD RUN echo "===> Updating TLS certificates..." && \
apk --update add 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" ]
|