From 759ca306fd5adc461c9740712154d27cf11d174f Mon Sep 17 00:00:00 2001 From: Lukas Zapletal Date: Tue, 10 Mar 2026 14:00:08 +0100 Subject: [PATCH] docs: update COPR command for RHEL We have EPEL-9/10 repositories on COPR which are currently not used for image-builder. The command line utility prefers EPEL over RHEL repositories, so in order to actually install image-builder, platform argument which overrides the default behavior must be used. --- README.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/README.md b/README.md index 61a17a42..697a5482 100644 --- a/README.md +++ b/README.md @@ -25,10 +25,19 @@ As this project is under development right now we provide up-to-date development snapshots of the main branch through COPR: ```console +$ dnf copr enable @osbuild/osbuild $ dnf copr enable @osbuild/image-builder $ dnf install image-builder ``` +On RHEL systems, pass the platform argument: + +```console +$ dnf copr enable @osbuild/osbuild rhel-10-x86_64 +$ dnf copr enable @osbuild/image-builder rhel-10-x86_64 +$ dnf install image-builder +``` + You can also install `image-builder` via the go build system. ```console