triage-flow / Dockerfile
StrongCapybara's picture
fix(docker): ensure gradio dependency and ENABLE_WEB_INTERFACE are set in root Dockerfile
140fc55
Raw
History Blame Contribute Delete
240 Bytes
FROM python:3.11-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
EXPOSE 8000
ENV ENABLE_WEB_INTERFACE=true
CMD ["uvicorn", "server.app:app", "--host", "0.0.0.0", "--port", "8000"]