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", "--log-config", "./log_config.json", "--proxy-headers"]