ansible/fedora-37/Dockerfile

12 lines
291 B
Docker
Raw Permalink Normal View History

2022-04-20 17:38:19 +00:00
FROM fedora:37
2016-07-24 19:20:12 +00:00
RUN dnf -y install \
ansible \
openssh-clients \
2020-10-31 15:47:55 +00:00
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-07-24 19:20:12 +00:00
&& dnf clean all
CMD ["ansible-playbook", "--help"]