2016-07-31 08:10:38 +00:00
|
|
|
FROM ubuntu:16.04
|
|
|
|
|
|
|
|
RUN apt-get update \
|
2016-08-06 13:32:18 +00:00
|
|
|
&& apt-get install -y --no-install-recommends \
|
|
|
|
software-properties-common \
|
2016-07-31 08:10:38 +00:00
|
|
|
&& apt-add-repository ppa:ansible/ansible \
|
|
|
|
&& apt-get update \
|
2016-08-06 13:32:18 +00:00
|
|
|
&& apt-get install -y --no-install-recommends \
|
2016-07-31 08:10:38 +00:00
|
|
|
ansible \
|
|
|
|
&& apt-get autoclean
|
|
|
|
|
2016-07-31 12:44:58 +00:00
|
|
|
CMD ["ansible-playbook", "--help"]
|