CoolFace
Apppublic

rpabbi/TriageFlow

sourceHugging Faceupdated 6mo agoView on Hugging Face
0likes
Dockerfile13 linesDownload Raw Back to root
1FROM python:3.11-slim2 3WORKDIR /app4 5COPY requirements.txt .6RUN pip install --no-cache-dir -r requirements.txt7 8COPY . .9 10EXPOSE 786011 12ENTRYPOINT ["streamlit", "run", "app.py", "--server.port=7860", "--server.address=0.0.0.0", "--server.headless=true", "--browser.gatherUsageStats=false"]13