fix(nvidia): Remove older 32 bit glibc package

Nvidia has the older 32 bit glibc installed so before installing the newer one, we need to remove the old one
This commit is contained in:
RJ Trujillo 2023-11-28 17:38:40 -07:00 committed by Kyle Gospodnetich
parent 3b0736c5e6
commit 459d718f0c

View File

@ -74,7 +74,11 @@ RUN rpm-ostree override remove \
power-profiles-daemon
# Install new packages
RUN rpm-ostree install \
RUN if [[ "${IMAGE_FLAVOR}" =~ "nvidia" ]]; then \
rpm-ostree override remove \
glibc32 \
; fi && \
rpm-ostree install \
ublue-update \
discover-overlay \
python3-pip \