Skip to content

Commit 4473a2a

Browse files
committed
chore: update NVIDIA driver version and SHA256 checksum in Docker configuration
1 parent f32ca18 commit 4473a2a

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

nix/docker.nix

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -106,11 +106,11 @@ let
106106
((pkgs.linuxPackages.nvidiaPackages.dc.override {
107107
libsOnly = true;
108108
kernel = null;
109-
}).overrideAttrs (old: let version = "570.133.20"; in {
109+
}).overrideAttrs (old: let version = "580.95.05"; in {
110110
inherit version;
111111
src = pkgs.fetchurl {
112112
url = "https://us.download.nvidia.com/tesla/${version}/NVIDIA-Linux-x86_64-${version}.run";
113-
sha256 = "sha256-ElPRexUo6KJL8fNKisZZHJJLmK16MjRL3iU6piKsFgU=";
113+
sha256 = "sha256-hJ7w746EK5gGss3p8RwTA9VPGpp2lGfk5dlhsv4Rgqc=";
114114
};
115115
}))
116116
];
@@ -155,7 +155,7 @@ let
155155
"NVIDIA_DRIVER_CAPABILITIES=all"
156156
"NVIDIA_VISIBLE_DEVICES=all"
157157
"LD_LIBRARY_PATH=${lib.makeLibraryPath (cudaRuntimeLibs ++ nvidiaUserSpaceLibs)}:/usr/local/nvidia/lib64:/lib:/usr/lib"
158-
"PATH=${lib.makeBinPath (with pkgs; [ bashInteractive coreutils findutils gnugrep ])}"
158+
"PATH=${lib.makeBinPath (with pkgs; [ bashInteractive coreutils findutils gnugrep ])}:/bin:/usr/bin"
159159
"LOGNAME=root"
160160
"TORCHINDUCTOR_CACHE_DIR=/tmp/torchinductor"
161161
"PYTHONUNBUFFERED=1"

0 commit comments

Comments
 (0)