ansible/Dockerfile.debian-8
2016-08-06 16:17:26 +02:00

18 lines
338 B
Docker

FROM debian:8
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 autoclean \
&& pip install --quiet --upgrade \
ansible
WORKDIR /site
CMD ["ansible-playbook", "--help"]