Natzi21/malaria-cell-detection
0
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"]