Release v1.3.0

This commit is contained in:
2026-06-22 22:52:21 +02:00
parent 2b63e5b1d7
commit 62c3899135
11 changed files with 2201 additions and 172 deletions
+10
View File
@@ -0,0 +1,10 @@
services:
web:
image: python:3.11-slim
working_dir: /app
command: sh -c "pip install -r requirements.txt && uvicorn webapp:app --host 0.0.0.0 --port 8000"
ports:
- "8000:8000"
volumes:
- .:/app
restart: unless-stopped