FROM python:3.10-slim COPY . /app WORKDIR /app RUN pip install -r ./requirements.txt CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0"]