From 3d317356ed6256887cc42bb8e928f0ae3663b26d Mon Sep 17 00:00:00 2001 From: Markus Date: Fri, 30 Jan 2026 09:18:15 +0100 Subject: [PATCH] inital --- .devcontainer/devcontainer.json | 19 +++++++++++++++++++ hello.py | 5 +++++ 2 files changed, 24 insertions(+) create mode 100644 .devcontainer/devcontainer.json create mode 100644 hello.py 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()