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

15
debian-8/Dockerfile Normal file
View File

@ -0,0 +1,15 @@
FROM debian:8
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 autoclean \
&& pip install --quiet --upgrade \
ansible
CMD ["ansible-playbook", "--help"]