2019-04-16 18:19:04 -07:00
|
|
|
{
|
|
|
|
|
"name": "Python Sample",
|
|
|
|
|
"dockerFile": "Dockerfile",
|
2019-08-26 14:01:56 -07:00
|
|
|
|
2019-11-18 19:41:08 -08:00
|
|
|
// Use 'appPort' to create a container with published ports. If the port isn't working, be sure
|
|
|
|
|
// your server accepts connections from all interfaces (0.0.0.0 or '*'), not just localhost.
|
|
|
|
|
// In this case, "--host 0.0.0.0 --port 9000" needs to be passed into Flask to make this happen.
|
2019-08-26 14:01:56 -07:00
|
|
|
"appPort": [9000],
|
|
|
|
|
|
|
|
|
|
// 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"],
|
|
|
|
|
|
|
|
|
|
// Use 'settings' to set *default* container specific settings.json values on container create.
|
|
|
|
|
// You can edit these settings after create using File > Preferences > Settings > Remote.
|
|
|
|
|
"settings": {
|
|
|
|
|
"terminal.integrated.shell.linux": "/bin/bash",
|
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
|
|
|
|
|
},
|
2019-08-26 14:01:56 -07:00
|
|
|
|
|
|
|
|
// Specifies a command to run after the container is created
|
2019-08-06 01:49:08 +00:00
|
|
|
"postCreateCommand": "sudo pip install -r requirements.txt",
|
2019-08-26 14:01:56 -07:00
|
|
|
|
|
|
|
|
"extensions": [
|
|
|
|
|
"ms-python.python"
|
|
|
|
|
]
|
2019-08-06 01:49:08 +00:00
|
|
|
}
|