Files
python/.devcontainer/devcontainer.json

21 lines
539 B
JSON
Raw Normal View History

2019-04-16 18:19:04 -07:00
{
"name": "Python Sample",
"dockerFile": "Dockerfile",
2019-04-19 13:47:02 -07:00
"appPort": 9000,
2019-04-16 18:19:04 -07:00
"extensions": [
2019-04-19 14:40:02 -07:00
"ms-python.python"
2019-05-28 20:17:31 +00:00
],
"settings": {
"python.pythonPath": "/usr/local/bin/python",
"python.linting.pylintEnabled": true,
"python.linting.pylintPath": "/usr/local/bin/pylint",
"python.linting.enabled": true
},
"postCreateCommand": "sudo pip install -r requirements.txt",
// Comment out the next line to run as root instead. Linux users,
// update Dockerfile with your user's UID/GID if not 1000.
"runArgs": [ "-u", "vscode" ]
}
2019-04-16 18:19:04 -07:00
}