survey-extraction/.devcontainer/devcontainer.json

20 lines
488 B
JSON

{
"name": "Basic Python",
"build": { "dockerfile": "Dockerfile" },
"remoteUser": "vscode",
"postStartCommand": "bash .devcontainer/post-install.sh",
"mounts": [
"source=${localEnv:HOME},target=/workspaces/home,type=bind"
],
"customizations": {
"vscode": {
"extensions": [
"ms-python.python",
"ms-azuretools.vscode-docker",
"ms-toolsai.jupyter",
"mechatroner.rainbow-csv",
"ms-toolsai.datawrangler"
]
}
}
}