auditron-env / Dockerfile
shapiron's picture
Serve demo page at root, keep API at /docs and all other routes
9b214b6
raw
history blame contribute delete
249 Bytes
FROM python:3.11-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY rewards.py .
COPY server.py .
COPY index.html .
EXPOSE 7860
CMD ["uvicorn", "server:app", "--host", "0.0.0.0", "--port", "7860"]