ansible/Dockerfile.debian-8

17 lines
319 B
Docker
Raw Normal View History

2016-08-06 13:28:41 +00:00
FROM debian:8
RUN apt-get update \
2016-08-06 14:12:11 +00:00
&& 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
2016-08-06 13:28:41 +00:00
WORKDIR /site
CMD ["ansible-playbook", "--help"]