ansible/ubuntu-16.04/Dockerfile

20 lines
570 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 \
2018-01-29 21:40:35 +00:00
apt-utils \
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 \
2020-10-31 15:47:55 +00:00
curl \
&& curl -L https://github.com/aelsabbahy/goss/releases/latest/download/goss-linux-amd64 -o /usr/local/bin/goss \
&& chmod +rx /usr/local/bin/goss \
2016-08-14 17:03:43 +00:00
&& apt-get clean
2016-07-31 08:10:38 +00:00
CMD ["ansible-playbook", "--help"]