ansible/Dockerfile.ubuntu-16.04
2016-08-06 15:32:18 +02:00

15 lines
343 B
Docker

FROM ubuntu:16.04
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"]