feat: add demo app

This commit is contained in:
2026-04-17 13:30:10 +08:00
commit 0592061237
3 changed files with 38 additions and 0 deletions

5
Dockerfile Normal file
View File

@@ -0,0 +1,5 @@
FROM python:3.11-alpine
WORKDIR /app
COPY app.py .
EXPOSE 8080
CMD ["python", "app.py"]