From d2cfbe1c959e1c6155b29e64306d3e7f2a392fab Mon Sep 17 00:00:00 2001 From: Dusty Mabe Date: Wed, 30 Apr 2025 14:58:28 -0400 Subject: [PATCH] Containerfile: name the python3 dependency Since bootc-base-imagectl is python3 we need to make sure it's installed in our `builder` container steps. --- Containerfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Containerfile b/Containerfile index 4e30563..f89430c 100644 --- a/Containerfile +++ b/Containerfile @@ -16,9 +16,10 @@ ARG REPOS_IMAGE=quay.io/fedora/fedora:rawhide ARG BUILDER_IMAGE=quay.io/fedora/fedora:rawhide FROM $REPOS_IMAGE as repos -# BOOTSTRAPPING: This can be any image that has rpm-ostree and selinux-policy-targeted. +# BOOTSTRAPPING: This can be any image that has rpm-ostree, selinux-policy-targeted +# and python3 (for bootc-base-imagectl). FROM $BUILDER_IMAGE as builder -RUN dnf -y install rpm-ostree selinux-policy-targeted +RUN dnf -y install rpm-ostree selinux-policy-targeted python3 ARG MANIFEST=fedora-standard # The input git repository has .repo files committed to git rpm-ostree has historically # emphasized that. But here, we are fetching the repos from the container base image.