added debian-7 and ubuntu-14.04
This commit is contained in:
parent
81b8d8cda4
commit
76fad4565c
15
debian-7/Dockerfile
Normal file
15
debian-7/Dockerfile
Normal file
@ -0,0 +1,15 @@
|
||||
FROM debian:7
|
||||
|
||||
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 clean \
|
||||
&& pip install --quiet --upgrade setuptools \
|
||||
&& pip install --quiet --upgrade ansible
|
||||
|
||||
CMD ["ansible-playbook", "--help"]
|
12
ubuntu-14.04/Dockerfile
Normal file
12
ubuntu-14.04/Dockerfile
Normal 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"]
|
Loading…
Reference in New Issue
Block a user