Yves-Tana/CC_Transfer_Learning
0
1FROM python:3.102 3 4COPY requirements.txt .5RUN pip install -r requirements.txt6 7COPY . /app8WORKDIR /app9 10EXPOSE 786011 12CMD ["streamlit", "run", "app.py", "--server.port=7860", "--server.address=0.0.0.0"]1FROM python:3.102 3 4COPY requirements.txt .5RUN pip install -r requirements.txt6 7COPY . /app8WORKDIR /app9 10EXPOSE 786011 12CMD ["streamlit", "run", "app.py", "--server.port=7860", "--server.address=0.0.0.0"]