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": {
|
2019-08-06 01:49:08 +00:00
|
|
|
"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" ]
|
|
|
|
|
}
|