2022-02-10 14:53:05 +00:00
|
|
|
FROM almalinux:8
|
2020-06-11 10:23:02 +00:00
|
|
|
|
2022-02-10 14:53:05 +00:00
|
|
|
RUN dnf -y install python3-pip epel-release \
|
|
|
|
&& dnf install -y ansible curl \
|
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 \
|
2020-10-31 17:54:14 +00:00
|
|
|
&& chmod +rx /usr/local/bin/goss \
|
|
|
|
&& touch ~/.netrc && chmod og-rw ~/.netrc \
|
2020-10-31 18:26:14 +00:00
|
|
|
&& pip3 install firewall
|
2020-06-11 10:23:02 +00:00
|
|
|
|
|
|
|
CMD ["ansible-playbook", "--help"]
|