Containerfile: name the python3 dependency

Since bootc-base-imagectl is python3 we need to make sure it's installed
in our `builder` container steps.
This commit is contained in:
Dusty Mabe 2025-04-30 14:58:28 -04:00
parent b5275ecaf7
commit d2cfbe1c95
No known key found for this signature in database
GPG key ID: 3302DBD73952E671

View file

@ -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.