This commit is contained in:
2026-05-27 07:09:46 +02:00
parent 901fdbbb3b
commit 8bcf5ff950
11 changed files with 431 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
FROM python:3.12-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install -r requirements.txt
COPY app.py .
COPY .env .
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "8765"]