Add initial FastAPI application and Dockerfile for chatbot integration

This commit is contained in:
2026-05-10 10:00:45 +02:00
parent edd0599077
commit 8b2e30eeb5
4 changed files with 51 additions and 19 deletions
+11
View File
@@ -0,0 +1,11 @@
FROM python:3.11-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "8000"]