#
# A Fedora 43 image tailored for tmt test suite
#
# tmt/tests/fedora/43:latest
#

FROM quay.io/fedora/fedora:43

# hadolint ignore=DL3040
RUN <<EOF
set -ex

# Populate dnf cache
dnf makecache

# Make sure the image is built with the latest packages
dnf update -y

# Inject `dnf5` to make things more complicated for `dnf` family of
# package manager implementations
dnf install -y dnf5
EOF
