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:
parent
b5275ecaf7
commit
d2cfbe1c95
1 changed files with 3 additions and 2 deletions
|
|
@ -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.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue