ansible/Dockerfile.debian-8

16 lines
323 B
Docker
Raw Normal View History

2016-08-06 13:28:41 +00:00
FROM debian:8
2016-08-06 14:17:26 +00:00
RUN apt-get -q update \
&& apt-get -yq install --no-install-recommends \
2016-08-06 14:12:11 +00:00
build-essential \
libffi-dev \
libssl-dev \
python \
python-dev \
python-pip \
&& apt-get autoclean \
2016-08-06 14:17:26 +00:00
&& pip install --quiet --upgrade \
ansible
2016-08-06 13:28:41 +00:00
CMD ["ansible-playbook", "--help"]