Skip to content

Commit

Permalink
fix(nvidia): Remove older 32 bit glibc package
Browse files Browse the repository at this point in the history
Nvidia has the older 32 bit glibc installed so before installing the newer one, we need to remove the old one
  • Loading branch information
EyeCantCU authored Nov 29, 2023
1 parent f1ff06c commit 290f766
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion Containerfile
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,11 @@ RUN rpm-ostree override remove \
htop

# 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 \
Expand Down

0 comments on commit 290f766

Please sign in to comment.