Adds a Dockerfile-based development container using Microsoft's Python 3.13 image, with uv installed for dependency management. Updates: - Adds .devcontainer/Dockerfile based on Python 3.13 - Modifies devcontainer.json to use a local build - Updates on-create-command.sh to install dependencies using uv
19 lines
428 B
JSON
19 lines
428 B
JSON
{
|
|
"name": "pallets/flask",
|
|
"build": {
|
|
"dockerfile": "Dockerfile"
|
|
},
|
|
"customizations": {
|
|
"vscode": {
|
|
"settings": {
|
|
"python.defaultInterpreterPath": "${workspaceFolder}/.venv",
|
|
"python.terminal.activateEnvInCurrentTerminal": true,
|
|
"python.terminal.launchArgs": [
|
|
"-X",
|
|
"dev"
|
|
]
|
|
}
|
|
}
|
|
},
|
|
"onCreateCommand": ".devcontainer/on-create-command.sh"
|
|
}
|