feat(ai-service): container YOLO FastAPI pour détection plantes

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-02-22 12:09:56 +01:00
parent 2d8b1b40ce
commit ad1c1044c7
4 changed files with 90 additions and 2 deletions

9
ai-service/Dockerfile Normal file
View File

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