CoolFace
Apppublic

DevakiPHuggingface/CKD_prediction_system

sourceHugging Facemitupdated 5mo agoView on Hugging Face
0likes
Dockerfile11 linesDownload Raw Back to root
1FROM python:3.102 3WORKDIR /app4 5COPY . /app6 7RUN pip install --no-cache-dir -r requirements.txt8 9EXPOSE 850110 11CMD ["streamlit", "run", "app.py", "--server.port=8501", "--server.address=0.0.0.0"]