Containerfile: drop pulling rpm-ostree from copr

Things have stabilized a bit now so let's revert 1a5ba89
so it's easier to override the builder image if someone wants
to do that.
This commit is contained in:
Dusty Mabe 2025-04-29 15:23:34 -04:00
parent abbc4d1454
commit b251e1cbb3
No known key found for this signature in database
GPG key ID: 3302DBD73952E671

View file

@ -13,13 +13,8 @@ ARG REPOS_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.
FROM quay.io/fedora/fedora:41 as builder
# However we also pull rpm-ostree from git main to get some fixes for now
RUN <<EORUN
set -xeuo pipefail
curl -L --fail -o /etc/yum.repos.d/continuous.repo https://copr.fedorainfracloud.org/coprs/g/CoreOS/continuous/repo/fedora-41/group_CoreOS-continuous-fedora-41.repo
dnf -y install rpm-ostree selinux-policy-targeted
EORUN
FROM quay.io/fedora/fedora:rawhide as builder
RUN dnf -y install rpm-ostree selinux-policy-targeted
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.