ansible/centos-7/Dockerfile

11 lines
341 B
Docker
Raw Normal View History

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