Add debian 8 base image
This commit is contained in:
parent
06b9fe1e8c
commit
51e205f2ce
@ -11,6 +11,7 @@ publish:
|
|||||||
|
|
||||||
matrix:
|
matrix:
|
||||||
OS:
|
OS:
|
||||||
|
- debian-8
|
||||||
- ubuntu-16.04
|
- ubuntu-16.04
|
||||||
- fedora-24
|
- fedora-24
|
||||||
|
|
||||||
|
13
Dockerfile.debian-8
Normal file
13
Dockerfile.debian-8
Normal 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"]
|
Loading…
Reference in New Issue
Block a user