MSI_Julia_CNN/.devcontainer/devcontainer.json

28 lines
688 B
JSON

{
"name": "MSI Hybrid Workflow",
"build": {
"dockerfile": "../Dockerfile",
"context": ".."
},
"workspaceFolder": "/app",
"customizations": {
"vscode": {
"settings": {
"python.defaultInterpreterPath": "/usr/bin/python3",
"julia.executablePath": "/usr/local/bin/julia"
},
"extensions": [
"ms-python.python",
"ms-python.vscode-pylance",
"charliermarsh.ruff",
"julialang.language-julia"
]
}
},
"runArgs": [
"--gpus=all",
"--shm-size=2gb"
],
"remoteUser": "root"
}