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