gitarsenal-cli 1.6.4 → 1.6.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
@@ -1396,7 +1396,7 @@ def create_modal_ssh_container(gpu_type, repo_url=None, repo_name=None, setup_co
|
|
1396
1396
|
try:
|
1397
1397
|
print("📦 Building SSH-enabled image...")
|
1398
1398
|
ssh_image = (
|
1399
|
-
modal.Image.
|
1399
|
+
modal.Image.from_registry("nvidia/cuda:12.4.0-devel-ubuntu22.04", add_python="3.11")
|
1400
1400
|
.apt_install(
|
1401
1401
|
"openssh-server", "sudo", "curl", "wget", "vim", "htop", "git",
|
1402
1402
|
"python3", "python3-pip", "build-essential", "tmux", "screen", "nano",
|
@@ -1396,7 +1396,7 @@ def create_modal_ssh_container(gpu_type, repo_url=None, repo_name=None, setup_co
|
|
1396
1396
|
try:
|
1397
1397
|
print("📦 Building SSH-enabled image...")
|
1398
1398
|
ssh_image = (
|
1399
|
-
modal.Image.
|
1399
|
+
modal.Image.from_registry("nvidia/cuda:12.4.0-devel-ubuntu22.04", add_python="3.11")
|
1400
1400
|
.apt_install(
|
1401
1401
|
"openssh-server", "sudo", "curl", "wget", "vim", "htop", "git",
|
1402
1402
|
"python3", "python3-pip", "build-essential", "tmux", "screen", "nano",
|