ansible/centos-7/Dockerfile

11 lines
341 B
Docker
Raw Normal View History

2016-08-14 10:22:01 +02:00
FROM centos:7
RUN yum -y install epel-release \
2020-10-31 18:54:14 +01:00
&& yum -y install ansible git curl python-firewall \
2020-10-31 16:47:55 +01:00
&& 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 19:03:43 +02:00
&& yum clean headers \
&& yum clean packages
2016-08-14 10:22:01 +02:00
CMD ["ansible-playbook", "--help"]