This commit is contained in:
Markus
2026-01-30 09:18:15 +01:00
commit 3d317356ed
2 changed files with 24 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
{
"name": "Python 3",
"image": "python:3.11.14-alpine3.23",
"customizations": {
"vscode": {
"extensions": [
"ms-python.python",
"ms-python.vscode-pylance"
]
}
},
"postCreateCommand": "pip install --upgrade pip",
"forwardPorts": [],
"remoteUser": "root"
}

5
hello.py Normal file
View File

@@ -0,0 +1,5 @@
def main():
print("Hello, World!")
if __name__ == "__main__":
main()