From ebfd2bf236ddaf7206dc77877dc9eb2d07a0dec9 Mon Sep 17 00:00:00 2001 From: William Yeh Date: Tue, 28 Apr 2015 12:21:34 +0800 Subject: Add: onbuild and debian8. --- debian7-onbuild/Dockerfile | 47 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) create mode 100644 debian7-onbuild/Dockerfile (limited to 'debian7-onbuild/Dockerfile') diff --git a/debian7-onbuild/Dockerfile b/debian7-onbuild/Dockerfile new file mode 100644 index 0000000..1620990 --- /dev/null +++ b/debian7-onbuild/Dockerfile @@ -0,0 +1,47 @@ +# Dockerfile for building Ansible image for Debian 7 (wheezy), with as few additional software as possible. +# +# @see https://launchpad.net/~ansible/+archive/ubuntu/ansible +# +# Version 1.0 +# + + +# pull base image +FROM debian:wheezy + +MAINTAINER William Yeh + + +RUN echo "===> Installing python, sudo, and supporting tools..." && \ + apt-get update && \ + DEBIAN_FRONTEND=noninteractive \ + apt-get install -y \ + python python-yaml sudo \ + curl gcc python-pip python-dev && \ + \ + \ + echo "===> Installing Ansible..." && \ + pip install ansible && \ + \ + \ + echo "===> Removing unused APT resources..." && \ + apt-get -f -y --auto-remove remove curl gcc python-pip python-dev && \ + apt-get clean && \ + rm -rf /var/lib/apt/lists/* /tmp/* && \ + \ + \ + echo "===> Adding hosts for convenience..." && \ + mkdir -p /etc/ansible && \ + echo '[local]\nlocalhost\n' > /etc/ansible/hosts + + +COPY ansible-playbook-wrapper /usr/local/bin/ + +ONBUILD RUN DEBIAN_FRONTEND=noninteractive apt-get update +ONBUILD WORKDIR /tmp +ONBUILD COPY . /tmp + + + +# default command: display Ansible version +CMD [ "ansible-playbook", "--version" ] -- cgit v1.2.3