-
Notifications
You must be signed in to change notification settings - Fork 820
Expand file tree
/
Copy pathdevcontainer.json
More file actions
32 lines (32 loc) · 878 Bytes
/
devcontainer.json
File metadata and controls
32 lines (32 loc) · 878 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{
"name": "CUDA Development Container",
"build": {
"dockerfile": "../../docker/Dockerfile",
"context": "../../",
"target": "dev",
"args": {
"CUDA_BASE_IMAGE": "nvidia/cuda:13.0.1-devel-ubuntu24.04",
"CUDA_VERSION": "cu130",
"PYTORCH_INDEX": "cu130"
}
},
"runArgs": [
"--gpus=all"
],
"customizations": {
"vscode": {
"extensions": [
"llvm-vs-code-extensions.vscode-clangd",
"ms-python.python",
"nvidia.nsight-vscode-edition",
"xaver.clang-format",
"charliermarsh.ruff",
"matangover.mypy"
]
}
},
"mounts": [
"type=bind,source=${localEnv:HOME}/.ssh,target=/home/devuser/.ssh,readonly"
],
"remoteUser": "devuser"
}