chore: import upstream snapshot with attribution

This commit is contained in:
wehub-resource-sync
2026-07-13 13:13:07 +08:00
commit 1c4adf53ac
336 changed files with 131689 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
# Python dev environment in a hardware-isolated microVM
#
# smolvm machine run -s examples/python-app/python.smolfile
# smolvm machine create --name dev -s python.smolfile
# smolvm machine start --name dev
# smolvm machine exec --name dev -- python3 --version
image = "python:3.12-alpine"
entrypoint = ["python3"]
cpus = 2
memory = 512
net = true
[dev]
ports = ["8080:8080"]
init = ["pip install --no-cache-dir ipython"]