From 518a2ddf4e5d38d15cb5d95ac98e725788459196 Mon Sep 17 00:00:00 2001 From: Kyle Gospodnetich Date: Wed, 5 Feb 2025 00:01:01 -0800 Subject: [PATCH] chore: Install rocm separately w/ weak deps disabled, cleanup --- Containerfile | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/Containerfile b/Containerfile index ba67aa1d..ac7a030c 100644 --- a/Containerfile +++ b/Containerfile @@ -224,7 +224,6 @@ RUN --mount=type=cache,dst=/var/cache/libdnf5 \ compsize \ ryzenadj \ input-remapper \ - tuned-profiles-cpu-partitioning \ i2c-tools \ udica \ ladspa-caps-plugins \ @@ -247,7 +246,6 @@ RUN --mount=type=cache,dst=/var/cache/libdnf5 \ rar \ libxcrypt-compat \ vulkan-tools \ - glibc.i686 \ extest.i686 \ xwiimote-ng \ fastfetch \ @@ -271,12 +269,13 @@ RUN --mount=type=cache,dst=/var/cache/libdnf5 \ libvirt \ lsb_release \ ublue-update \ - rocm-hip \ - rocm-opencl \ - rocm-clinfo \ waydroid \ cage \ wlr-randr && \ + dnf5 -y --setopt=install_weak_deps=False install \ + rocm-hip \ + rocm-opencl \ + rocm-clinfo && \ mkdir -p /etc/xdg/autostart && \ sed -i~ -E 's/=.\$\(command -v (nft|ip6?tables-legacy).*/=/g' /usr/lib/waydroid/data/scripts/waydroid-net.sh && \ sed -i '1s/^/[include]\npaths = ["\/etc\/ublue-os\/topgrade.toml"]\n\n/' /usr/share/ublue-update/topgrade-user.toml && \