diff --git a/Containerfile b/Containerfile index 4f08153..3a99360 100644 --- a/Containerfile +++ b/Containerfile @@ -6,11 +6,19 @@ # to run the "rechunker" on the output of this build, see # https://coreos.github.io/rpm-ostree/experimental-build-chunked-oci/ +# Override this repos container to control the base image package versions. For +# example, podman build --from=quay.io/fedora/fedora:41 will get you a system +# that uses Fedora 41 packages. Or inject arbitrary yum repos (COPR, etc) here. FROM quay.io/fedora/fedora:rawhide as repos # BOOTSTRAPPING: This can be any image that has rpm-ostree and selinux-policy-targeted. -FROM quay.io/fedora/fedora:rawhide as builder -RUN dnf -y install rpm-ostree selinux-policy-targeted +FROM quay.io/fedora/fedora:41 as builder +# However we also pull rpm-ostree from git main to get some fixes for now +RUN <