CoolFace
Apppublic

WilsonPharma/Practitioners-Workload-DB

sourceHugging Faceupdated 4mo agoView on Hugging Face
1likes
Dockerfile17 linesDownload Raw Back to root
1FROM python:3.11-slim2 3WORKDIR /app4 5RUN apt-get update && apt-get install -y \6    build-essential curl git && \7    rm -rf /var/lib/apt/lists/*8 9COPY requirements.txt .10RUN pip3 install --no-cache-dir -r requirements.txt11 12COPY . .13 14# Ensure the app starts on the correct port for Hugging Face15EXPOSE 786016 17ENTRYPOINT ["streamlit", "run", "streamlit_app.py", "--server.port=7860", "--server.address=0.0.0.0", "--server.headless=true"]