From deeab1a101da6710574174dbe47199f9e8900b93 Mon Sep 17 00:00:00 2001 From: William Yeh Date: Thu, 14 Sep 2017 15:57:43 +0800 Subject: Add: Debian 9 ("Stretch") support. --- debian9/Dockerfile | 48 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 48 insertions(+) create mode 100644 debian9/Dockerfile (limited to 'debian9') diff --git a/debian9/Dockerfile b/debian9/Dockerfile new file mode 100644 index 0000000..c6e16a5 --- /dev/null +++ b/debian9/Dockerfile @@ -0,0 +1,48 @@ +# Dockerfile for building Ansible image for Debian 9 (stretch), with as few additional software as possible. +# +# @see https://launchpad.net/~ansible/+archive/ubuntu/ansible +# +# Version 1.0 +# + + +# pull base image +FROM debian:stretch + +MAINTAINER William Yeh + + +RUN echo "===> Installing python, sudo, and supporting tools..." && \ + apt-get update -y && apt-get install --fix-missing && \ + DEBIAN_FRONTEND=noninteractive \ + apt-get install -y \ + python python-yaml sudo \ + curl gcc python-pip python-dev libffi-dev libssl-dev && \ + apt-get -y --purge remove python-cffi && \ + pip install --upgrade cffi pywinrm && \ + \ + \ + \ + echo "===> Installing Ansible..." && \ + pip install ansible && \ + \ + \ + \ + echo "===> Installing handy tools (not absolutely required)..." && \ + apt-get install -y sshpass openssh-client && \ + \ + \ + echo "===> Removing unused APT resources..." && \ + apt-get -f -y --auto-remove remove \ + gcc python-pip python-dev libffi-dev libssl-dev && \ + apt-get clean && \ + rm -rf /var/lib/apt/lists/* /tmp/* && \ + \ + \ + echo "===> Adding hosts for convenience..." && \ + mkdir -p /etc/ansible && \ + echo 'localhost' > /etc/ansible/hosts + + +# default command: display Ansible version +CMD [ "ansible-playbook", "--version" ] -- cgit v1.2.3