From 384ea21f3c72ed49239a6c0f1d6b5ce2c98b5193 Mon Sep 17 00:00:00 2001 From: Kyle Gospodnetich Date: Thu, 25 Jan 2024 19:13:08 -0800 Subject: [PATCH] chore: Fix install order for topgrade & ublue-update --- Containerfile | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/Containerfile b/Containerfile index c104c9f2..b07b45f2 100644 --- a/Containerfile +++ b/Containerfile @@ -209,9 +209,7 @@ RUN rpm-ostree override remove \ || true # Install new packages -RUN pip install --prefix=/usr topgrade && \ - rpm-ostree install \ - ublue-update \ +RUN rpm-ostree install \ discover-overlay \ python3-pip \ libadwaita \ @@ -263,6 +261,9 @@ RUN pip install --prefix=/usr topgrade && \ gum \ setools \ redhat-lsb-core && \ + pip install --prefix=/usr topgrade && \ + rpm-ostree install \ + ublue-update && \ sed -i 's@enabled=1@enabled=0@g' /etc/yum.repos.d/_copr_ublue-os-staging.repo && \ rpm-ostree install \ nerd-fonts && \