ansible/Dockerfile.ubuntu-16.04
2016-07-31 14:46:12 +02:00

14 lines
287 B
Docker

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