This commit is contained in:
2025-05-16 01:22:20 +02:00
parent 27189d8a22
commit ee9f04bf46
11 changed files with 778 additions and 0 deletions

10
api/Dockerfile Normal file
View File

@@ -0,0 +1,10 @@
FROM python:3.9-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY server.py .
CMD ["uvicorn", "server:app", "--host", "0.0.0.0", "--port", "8000"]