Add debian 8 base image

This commit is contained in:
Paul Voss 2016-08-06 15:28:41 +02:00
parent 06b9fe1e8c
commit 51e205f2ce
2 changed files with 14 additions and 0 deletions

View File

@ -11,6 +11,7 @@ publish:
matrix:
OS:
- debian-8
- ubuntu-16.04
- fedora-24

13
Dockerfile.debian-8 Normal file
View File

@ -0,0 +1,13 @@
FROM debian:8
RUN apt-get update \
&& apt-get install -y software-properties-common \
&& apt-add-repository ppa:ansible/ansible \
&& apt-get update \
&& apt-get install -y \
ansible \
&& apt-get autoclean
WORKDIR /site
CMD ["ansible-playbook", "--help"]