2016-08-14 20:04:57 +00:00
|
|
|
FROM debian:7
|
|
|
|
|
|
|
|
RUN apt-get -q update \
|
2020-10-31 15:47:55 +00:00
|
|
|
&& apt-get install -y python-pip python-dev git apt-utils curl \
|
|
|
|
&& curl -L https://github.com/aelsabbahy/goss/releases/latest/download/goss-linux-amd64 -o /usr/local/bin/goss \
|
|
|
|
&& chmod +rx /usr/local/bin/goss
|
2018-01-18 22:56:35 +00:00
|
|
|
|
|
|
|
RUN pip install --index-url=https://pypi.python.org/simple/ --upgrade pip
|
|
|
|
|
|
|
|
RUN pip install git+https://github.com/ansible/ansible.git@devel
|
2016-08-14 20:04:57 +00:00
|
|
|
|
|
|
|
CMD ["ansible-playbook", "--help"]
|