Dockerfile 168 B

12345678910
  1. FROM python:3.11-slim
  2. WORKDIR /code
  3. COPY . .
  4. RUN pip install --no-cache-dir -r requirements.txt
  5. CMD ["uvicorn", "chat:app", "--host", "0.0.0.0", "--port", "8000"]