ansible/ubuntu-14.04/Dockerfile

13 lines
324 B
Docker
Raw Normal View History

2016-08-14 20:04:57 +00:00
FROM ubuntu:14.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 clean
CMD ["ansible-playbook", "--help"]