ansible/Dockerfile.debian-8
2016-08-06 16:12:11 +02:00

17 lines
319 B
Docker

FROM debian:8
RUN apt-get update \
&& apt-get install -yq --no-install-recommends \
build-essential \
libffi-dev \
libssl-dev \
python \
python-dev \
python-pip \
&& apt-get autoclean \
&& pip install --upgrade ansible
WORKDIR /site
CMD ["ansible-playbook", "--help"]