1
0
mirror of https://github.com/ublue-os/bazzite.git synced 2025-02-16 21:39:58 +00:00

chore: Fix operator

This commit is contained in:
Kyle Gospodnetich 2023-06-28 15:02:46 -07:00
parent 5ed38702a0
commit 5c8c281bdc

@ -18,7 +18,7 @@ RUN wget https://copr.fedorainfracloud.org/coprs/kylegospo/bazzite/repo/fedora-$
wget https://copr.fedorainfracloud.org/coprs/kylegospo/hl2linux-selinux/repo/fedora-$(rpm -E %fedora)/kylegospo-hl2linux-selinux-fedora-$(rpm -E %fedora).repo -O /etc/yum.repos.d/_copr_kylegospo-hl2linux-selinux.repo
# Install ROCM for non-Nvidia images
RUN if [[ "-nvidia" !== "${IMAGE_FLAVOR}" ]]; then rpm-ostree install \
RUN if [[ "-nvidia" != "${IMAGE_FLAVOR}" ]]; then rpm-ostree install \
rocm-hip \
rocm-opencl \
; fi