From f4acbf109e74d2fbba7cc13b7c446b061fb895bd Mon Sep 17 00:00:00 2001 From: gerblesh <101901964+gerblesh@users.noreply.github.com> Date: Mon, 10 Jun 2024 15:42:49 -0700 Subject: [PATCH] fix(ci): intall topgrade before building --- Containerfile.builder | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Containerfile.builder b/Containerfile.builder index df05bcc..d4a5036 100644 --- a/Containerfile.builder +++ b/Containerfile.builder @@ -6,6 +6,8 @@ WORKDIR /app ADD . /app +RUN dnf install python3-pip && pip install topgrade + RUN dnf install \ --disablerepo='*' \ --enablerepo='fedora,updates' \ @@ -17,7 +19,7 @@ RUN dnf install \ rpm-build && \ mkdir -p "$UBLUE_ROOT" && \ rpkg spec --outdir "$UBLUE_ROOT" && \ - dnf builddep -y output/ublue-update.spec + dnf builddep -y output/ublue-update.spec \ FROM builder AS rpm