-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile
60 lines (50 loc) · 1.63 KB
/
Dockerfile
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
55
56
57
58
59
60
FROM alpine:3.10
MAINTAINER [email protected]
RUN echo "===> Installing sudo to emulate normal OS behavior..." && \
apk --update add sudo && \
\
\
echo "===> Adding Python runtime..." && \
apk --update add python3 openssl ca-certificates && \
apk --update add --virtual build-dependencies \
python3-dev libffi-dev openssl-dev build-base && \
pip3 install --upgrade pip cffi && \
\
\
echo "===> Installing Ansible..." && \
pip3 install ansible==2.9.1 && \
\
\
echo "===> Installing handy tools (not absolutely required)..." && \
pip3 install --upgrade pywinrm && \
apk --update add sshpass openssh-client rsync && \
\
\
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
RUN apk --no-cache --update add \
bash \
py-dnspython \
py-boto \
py-netaddr \
bind-tools \
html2text \
php7 \
php7-json \
git \
jq \
curl
RUN pip3 install --no-cache-dir --upgrade yq
RUN pip3 install --no-cache-dir --upgrade mitogen
RUN pip3 install --no-cache-dir --upgrade boto
RUN mkdir -p /ansible/playbooks
WORKDIR /ansible/playbooks
VOLUME [ "/ansible/playbooks" ]
# default command: display Ansible version
CMD [ "ansible-playbook", "--version" ]