File size: 1,096 Bytes
9fe2444 | 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 33 34 35 36 37 38 39 40 41 42 43 44 45 | {
"name": "Avatar Speech Dev Container",
"build": {
"dockerfile": "Dockerfile",
"context": ".."
},
"features": {
"ghcr.io/devcontainers/features/nvidia-cuda:1": {
"installCudnn": true
},
"ghcr.io/devcontainers/features/node:1": {
"version": "lts"
},
"ghcr.io/devcontainers/features/common-utils:2": {
"installZsh": true,
"configureZshAsDefaultShell": true,
"installOhMyZsh": true,
"username": "vscode"
}
},
"customizations": {
"vscode": {
"extensions": [
"ms-python.python",
"ms-python.vscode-pylance",
"ms-toolsai.jupyter",
"esbenp.prettier-vscode",
"dbaeumer.vscode-eslint",
"tamasfe.even-better-toml"
],
"settings": {
"python.defaultInterpreterPath": "/opt/conda/envs/avatar/bin/python",
"python.terminal.activateEnvironment": true,
"terminal.integrated.defaultProfile.linux": "zsh"
}
}
},
"runArgs": [
"--gpus",
"all"
],
"postCreateCommand": "bash setup/setup.sh",
"remoteUser": "vscode"
}
|