commit 3d317356ed6256887cc42bb8e928f0ae3663b26d Author: Markus Date: Fri Jan 30 09:18:15 2026 +0100 inital diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json new file mode 100644 index 0000000..335d02a --- /dev/null +++ b/.devcontainer/devcontainer.json @@ -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" +} diff --git a/hello.py b/hello.py new file mode 100644 index 0000000..73c6bec --- /dev/null +++ b/hello.py @@ -0,0 +1,5 @@ +def main(): + print("Hello, World!") + +if __name__ == "__main__": + main()