CoolFace
Apppublic

shivams496/Pulsewatcher

sourceHugging Faceupdated 4mo agoView on Hugging Face
0likes
Dockerfile19 linesDownload Raw Back to root
1FROM python:3.10-slim2 3WORKDIR /app4 5RUN apt-get update && apt-get install -y \6    build-essential \7    && rm -rf /var/lib/apt/lists/*8 9COPY requirements.txt .10 11RUN pip install --no-cache-dir --upgrade pip && \12    pip install --no-cache-dir streamlit torch numpy pandas \13    matplotlib seaborn scikit-learn plotly wfdb14 15COPY . .16 17EXPOSE 786018 19CMD ["/bin/bash", "-c", "python -m streamlit run dashboard/app.py --server.port=7860 --server.address=0.0.0.0 --server.headless=true"]