You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
349 B
Docker
8 lines
349 B
Docker
FROM fedora:36
|
|
|
|
# Install ansible using dnf. We originally were going to have a flag for whether
|
|
# to use dnf or pip to install ansible however it looks like dnf installs all
|
|
# the python libs in the same location that pip would, therefore there doesn't
|
|
# seem to be a meaningful difference between the 2 install options.
|
|
RUN dnf install -y ansible
|