WilsonPharma/Practitioners-Workload-DB
1
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"]