moved dockerfiles to folders for automated builds with docker hub

This commit is contained in:
Paul Voss
2016-08-13 13:32:33 +02:00
parent b2c009d70a
commit 90a801fa46
3 changed files with 0 additions and 0 deletions

12
ubuntu-16.04/Dockerfile Normal file
View File

@ -0,0 +1,12 @@
FROM ubuntu:16.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 autoclean
CMD ["ansible-playbook", "--help"]