Refonte total

This commit is contained in:
Guillaume-Sanchez
2026-06-29 23:12:26 +02:00
parent 9036f6228d
commit 47dd7f4c4d
17 changed files with 1156 additions and 255 deletions
+7
View File
@@ -0,0 +1,7 @@
FROM python:3.9-slim
WORKDIR /app
COPY app/requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY app/ .
EXPOSE 8000
CMD ["python", "-m", "uvicorn", "main:app", "--host", "0.0.0.0", "--port", "8000"]