9 lines
128 B
Docker
9 lines
128 B
Docker
|
FROM fedora:24
|
||
|
|
||
|
RUN dnf -y install \
|
||
|
ansible \
|
||
|
openssh-clients \
|
||
|
&& dnf clean all
|
||
|
|
||
|
CMD ["ansible-playbook", "--help"]
|