0% found this document useful (0 votes)
9 views

Devcontainer Json

This document defines a Python 3.9 Flask development container including build settings, run arguments, integrated terminal settings, linting and testing configurations.

Uploaded by

bmx4life06
Copyright
© © All Rights Reserved
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
9 views

Devcontainer Json

This document defines a Python 3.9 Flask development container including build settings, run arguments, integrated terminal settings, linting and testing configurations.

Uploaded by

bmx4life06
Copyright
© © All Rights Reserved
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 1

{

"name": "Python 3.9 Flask Dev Container",


"build": {
"dockerfile": "Dockerfile",
"context": "..",
"args": {
"VARIANT": "3.9",
"INSTALL_NODE": "false"
}
},
"runArgs": [
"-p", "5000:5000"
],
"settings": {
"terminal.integrated.shell.linux": "/bin/bash",
"python.pythonPath": "/usr/local/bin/python",
"python.linting.pylintEnabled": false,
"python.linting.enabled": true,
"python.format.sortImports": true,
"python.testing.pytestArgs": [],
"python.testing.unittestEnabled": false,
"python.testing.nosetestsEnabled": false,
"python.testing.pytestEnabled": true
},
"extensions": [
"ms-python.python"
],
"forwardPorts": [5000]
}

You might also like