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

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"]