aboutsummaryrefslogtreecommitdiffhomepage
path: root/debian9-onbuild/Dockerfile
diff options
context:
space:
mode:
Diffstat (limited to 'debian9-onbuild/Dockerfile')
-rw-r--r--debian9-onbuild/Dockerfile56
1 files changed, 56 insertions, 0 deletions
diff --git a/debian9-onbuild/Dockerfile b/debian9-onbuild/Dockerfile
new file mode 100644
index 0000000..079ebd9
--- /dev/null
+++ b/debian9-onbuild/Dockerfile
@@ -0,0 +1,56 @@
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 && \
23 \
24 \
25 echo "===> Installing Ansible..." && \
26 pip install ansible && \
27 \
28 \
29 echo "===> Removing unused APT resources..." && \
30 apt-get -f -y --auto-remove remove \
31 gcc python-pip python-dev libffi-dev libssl-dev && \
32 apt-get clean && \
33 rm -rf /var/lib/apt/lists/* /tmp/* && \
34 \
35 \
36 echo "===> Adding hosts for convenience..." && \
37 mkdir -p /etc/ansible && \
38 echo 'localhost' > /etc/ansible/hosts
39
40
41COPY ansible-playbook-wrapper /usr/local/bin/
42
43ONBUILD RUN DEBIAN_FRONTEND=noninteractive apt-get update && \
44 echo "===> Updating TLS certificates..." && \
45 apt-get install -y openssl ca-certificates
46
47ONBUILD WORKDIR /tmp
48ONBUILD COPY . /tmp
49ONBUILD RUN \
50 echo "===> Diagnosis: host information..." && \
51 ansible -c local -m setup all
52
53
54
55# default command: display Ansible version
56CMD [ "ansible-playbook", "--version" ]