DevakiPHuggingface/CKD_prediction_system
0
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"]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"]