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