I am in the process of setting up for bootc experiments. Taking to heart the value of fedora software supply chain trust I see an opportunity to learn podman better by constructing a fedora based registry container.
docker-distribution is in fedora yum repos for f40. So I was thinking that I could start with a base fedora container image and layer on docker-distribution as an instructive test. Looking for what base images of fedora were built within the fedora project I found a couple candidates. I also pulled the official container image from the upstream project.
podman images
REPOSITORY TAG IMAGE ID CREATED SIZE
quay.io/fedora/fedora 40-x86_64 1404c219d44f 10 hours ago 233 MB
quay.io/fedora/fedora-minimal 40-x86_64 374e12affd8d 10 hours ago 122 MB
docker.io/library/registry 2 d6b2c32a0f14 8 months ago 26 MB
Now I am willing to use the CNCF docker.io/library/registry image as I consider them to also be trustworthy with software supply chain. But it is an awfully large difference in image size. The CNCF image is based on alpinelinux.
Are there smaller fedora base images available?
Alternatively what techniques are there to reduce the size of the deployable container?