Add temporary backend

This commit is contained in:
2025-07-17 21:21:24 +02:00
parent 4d7139b48a
commit fbdbd98e1e
8 changed files with 384 additions and 0 deletions

5
tmp/build/Dockerfile Normal file
View File

@@ -0,0 +1,5 @@
FROM python:3.13-alpine
WORKDIR /app
COPY . .
RUN pip install .
CMD ["hypercorn", "main:app", "--bind", "0.0.0.0:80"]