Files
ansible/Dockerfile.debian-8
T

15 lines
340 B
Docker

FROM debian:8
RUN apt-get update \
&& apt-get install -y --no-install-recommends \
software-properties-common \
&& apt-add-repository ppa:ansible/ansible \
&& apt-get update \
&& apt-get install -y --no-install-recommends \
ansible \
&& apt-get autoclean
WORKDIR /site
CMD ["ansible-playbook", "--help"]