CoolFace
Apppublic

Natzi21/malaria-cell-detection

sourceHugging Faceupdated 3mo agoView on Hugging Face
0likes
Dockerfile13 linesDownload Raw Back to root
1FROM python:3.112 3WORKDIR /app4 5COPY requirements.txt .6 7RUN pip install --no-cache-dir -r requirements.txt8 9COPY . .10 11EXPOSE 786012 13CMD ["streamlit", "run", "app.py", "--server.port=7860", "--server.address=0.0.0.0", "--server.enableXsrfProtection=false"]