ansible/ubuntu-16.04/Dockerfile

13 lines
328 B
Docker
Raw Normal View History

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
CMD ["ansible-playbook", "--help"]