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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gitarsenal-cli",
3
- "version": "1.6.4",
3
+ "version": "1.6.5",
4
4
  "description": "CLI tool for creating Modal sandboxes with GitHub repositories",
5
5
  "main": "index.js",
6
6
  "bin": {
@@ -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.debian_slim()
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.debian_slim()
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",