Dockerfile 200 B

1234567891011121314
  1. FROM python:3.12-slim
  2. WORKDIR /app
  3. COPY requirements/requirements.txt .
  4. RUN pip install --no-cache-dir -r requirements.txt
  5. COPY . .
  6. RUN mkdir -p logs
  7. EXPOSE 8000
  8. CMD ["python", "run_server.py"]