Agents-MCP-Hackathon/Aura_AI_Scan
6
1// For format details, see https://aka.ms/devcontainer.json. For config options, see the2{3 "name": "video_analizer",4 "build": {5 "dockerfile": "../Dockerfile"6 },7 "customizations": {8 "vscode": {9 "extensions": [10 "ms-python.python",11 "ms-python.vscode-pylance",12 "ms-toolsai.jupyter",13 "ms-toolsai.vscode-jupyter-cell-tags",14 "ms-toolsai.tensorboard",15 "ms-toolsai.jupyter-keymap",16 "ms-toolsai.jupyter-renderers",17 "ms-toolsai.vscode-jupyter-slideshow"18 ]19 }20 }, // You can read about these additional settings by following the links:21 "forwardPorts": ["7860:7860"], // https://code.visualstudio.com/docs/devcontainers/containers#_forwarding-or-publishing-a-port22 "overrideCommand": false, // https://code.visualstudio.com/remote/advancedcontainers/start-processes23 "runArgs": [24 "--shm-size=1gb",25 "--gpus",26 "all"27 ]28}