I had to restart podman desktopThat might be it! The status is spinning

rpm-ostree to dnf
bootc usroverlay
FROM quay.io/fedora/fedora-bootc:40
#! Set password to root:root for testing purposes
RUN echo "root:root" | chpasswd
# Use a patched version of rootfiles
# Checkout the specific pull request (PR#5 in this case)
RUN dnf install -y rpm-build git dnf-plugins-core
WORKDIR /usr/src/rootfiles
RUN git clone https://src.fedoraproject.org/rpms/rootfiles.git .
RUN git fetch origin +refs/pull/*:refs/remotes/origin/pr/*
RUN git checkout origin/pr/5/head
RUN dnf builddep -y rootfiles.spec
RUN rpmbuild -bb rootfiles.spec \
--define "_topdir `pwd`" \
--define "_sourcedir `pwd`" \
--define "_specdir `pwd`" \
--define "_builddir `pwd`" \
--define "_srcrpmdir `pwd`" \
--define "_rpmdir `pwd`"
RUN dnf install -y ./noarch/rootfiles-*.rpm
RUN dnf clean all
# Install the GUI
RUN dnf groupinstall "Cinnamon Desktop" --exclude=rootfiles -yError: cannot validate the setup: this command must be run in rootful (not rootless) podmanpodman machine init --rootful
podman machine startbootc usroverlay