added debian-7 and ubuntu-14.04

This commit is contained in:
Paul Voss 2016-08-14 22:04:57 +02:00
parent 81b8d8cda4
commit 76fad4565c
2 changed files with 27 additions and 0 deletions

15
debian-7/Dockerfile Normal file
View File

@ -0,0 +1,15 @@
FROM debian:7
RUN apt-get -q update \
&& apt-get -yq install --no-install-recommends \
build-essential \
libffi-dev \
libssl-dev \
python \
python-dev \
python-pip \
&& apt-get clean \
&& pip install --quiet --upgrade setuptools \
&& pip install --quiet --upgrade ansible
CMD ["ansible-playbook", "--help"]

12
ubuntu-14.04/Dockerfile Normal file
View File

@ -0,0 +1,12 @@
FROM ubuntu:14.04
RUN apt-get update \
&& apt-get install -y --no-install-recommends \
software-properties-common \
&& apt-add-repository ppa:ansible/ansible \
&& apt-get update \
&& apt-get install -y --no-install-recommends \
ansible \
&& apt-get clean
CMD ["ansible-playbook", "--help"]