FROM python:3.14-slim WORKDIR /app COPY . . RUN pip install . CMD ["uvicorn", "src.api_toolkit.main:app", "--host", "0.0.0.0", "--port", "7860"]