ansible/almalinux-8/Dockerfile

11 lines
370 B
Docker
Raw Normal View History

2022-02-10 14:53:05 +00:00
FROM almalinux:8
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
CMD ["ansible-playbook", "--help"]