Sardor2203/Coursework
1
1FROM python:3.102 3WORKDIR /app4COPY . /app5 6RUN pip install -r requirements.txt7 8CMD ["streamlit", "run", "app.py", "--server.port", "7860", "--server.address", "0.0.0.0"]1FROM python:3.102 3WORKDIR /app4COPY . /app5 6RUN pip install -r requirements.txt7 8CMD ["streamlit", "run", "app.py", "--server.port", "7860", "--server.address", "0.0.0.0"]