Files
LLMs-from-scratch/setup/03_optional-docker-environment/.devcontainer/devcontainer.json

19 lines
398 B
JSON
Raw Normal View History

2024-02-26 20:24:15 +08:00
{
"name": "LLMs From Scratch",
"build": {
"context": "..",
"dockerfile": "Dockerfile"
},
"runArgs": ["--runtime=nvidia", "--gpus=all"],
"customizations": {
"vscode": {
"extensions": [
"ms-python.python",
"ms-azuretools.vscode-docker",
"ms-toolsai.jupyter",
"yahyabatulu.vscode-markdown-alert",
"tomoki1207.pdf"
2024-02-26 20:24:15 +08:00
]
}
}
2024-02-29 08:22:53 -06:00
}