-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update build-images to fix bladebit CI (#94)
* fix old glibc * more accurate commands * correct some things * Update Dockerfile
- Loading branch information
Showing
2 changed files
with
11 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
FROM quay.io/pypa/manylinux_2_28_x86_64 | ||
FROM quay.io/pypa/manylinux_2_34_x86_64 | ||
|
||
ENV PATH=/usr/local/cuda-12.5/bin${PATH:+:${PATH}} | ||
ENV PATH=/usr/local/cuda/bin${PATH:+:${PATH}} | ||
|
||
RUN dnf config-manager --add-repo https://developer.download.nvidia.com/compute/cuda/repos/rhel8/x86_64/cuda-rhel8.repo && \ | ||
dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm && \ | ||
dnf clean all && \ | ||
dnf -y module install nvidia-driver:latest-dkms && \ | ||
dnf -y install cuda-toolkit | ||
RUN dnf config-manager --add-repo https://developer.download.nvidia.com/compute/cuda/repos/rhel9/x86_64/cuda-rhel9.repo && \ | ||
dnf install -y epel-release && \ | ||
dnf clean expire-cache && \ | ||
dnf module enable -y nvidia-driver:560-open && \ | ||
dnf install -y cuda |