ansible/ubuntu-16.04/Dockerfile

16 lines
383 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 \
python-apt \
git-core \
2017-06-11 20:27:49 +00:00
openssh-client \
2016-08-14 17:03:43 +00:00
&& apt-get clean
2016-07-31 08:10:38 +00:00
CMD ["ansible-playbook", "--help"]