ansible/debian-8/Dockerfile

16 lines
319 B
Docker
Raw Normal View History

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