aboutsummaryrefslogtreecommitdiffhomepage
path: root/debian9
diff options
context:
space:
mode:
authorWilliam Yeh <william.pjyeh@gmail.com>2017-09-14 15:57:43 +0800
committerWilliam Yeh <william.pjyeh@gmail.com>2017-09-14 17:56:59 +0800
commitdeeab1a101da6710574174dbe47199f9e8900b93 (patch)
tree95605a54ab972f9b821267be534103803fb84f2a /debian9
parent57d366d79328ee5d127d05644b108bd4f7915cdc (diff)
downloaddocker-ansible-deeab1a101da6710574174dbe47199f9e8900b93.tar.gz
docker-ansible-deeab1a101da6710574174dbe47199f9e8900b93.tar.zst
docker-ansible-deeab1a101da6710574174dbe47199f9e8900b93.zip
Add: Debian 9 ("Stretch") support.
Diffstat (limited to 'debian9')
-rw-r--r--debian9/Dockerfile48
1 files changed, 48 insertions, 0 deletions
diff --git a/debian9/Dockerfile b/debian9/Dockerfile
new file mode 100644
index 0000000..c6e16a5
--- /dev/null
+++ b/debian9/Dockerfile
@@ -0,0 +1,48 @@
1# Dockerfile for building Ansible image for Debian 9 (stretch), with as few additional software as possible.
2#
3# @see https://launchpad.net/~ansible/+archive/ubuntu/ansible
4#
5# Version 1.0
6#
7
8
9# pull base image
10FROM debian:stretch
11
12MAINTAINER William Yeh <william.pjyeh@gmail.com>
13
14
15RUN echo "===> Installing python, sudo, and supporting tools..." && \
16 apt-get update -y && apt-get install --fix-missing && \
17 DEBIAN_FRONTEND=noninteractive \
18 apt-get install -y \
19 python python-yaml sudo \
20 curl gcc python-pip python-dev libffi-dev libssl-dev && \
21 apt-get -y --purge remove python-cffi && \
22 pip install --upgrade cffi pywinrm && \
23 \
24 \
25 \
26 echo "===> Installing Ansible..." && \
27 pip install ansible && \
28 \
29 \
30 \
31 echo "===> Installing handy tools (not absolutely required)..." && \
32 apt-get install -y sshpass openssh-client && \
33 \
34 \
35 echo "===> Removing unused APT resources..." && \
36 apt-get -f -y --auto-remove remove \
37 gcc python-pip python-dev libffi-dev libssl-dev && \
38 apt-get clean && \
39 rm -rf /var/lib/apt/lists/* /tmp/* && \
40 \
41 \
42 echo "===> Adding hosts for convenience..." && \
43 mkdir -p /etc/ansible && \
44 echo 'localhost' > /etc/ansible/hosts
45
46
47# default command: display Ansible version
48CMD [ "ansible-playbook", "--version" ]