RAIBS-LLC/Financial-Risk-Modeling
0
1FROM python:3.102 3WORKDIR /app4 5COPY . .6 7RUN pip install --no-cache-dir -r requirements.txt8 9EXPOSE 786010 11CMD ["streamlit", "run", "app.py", "--server.port=7860", "--server.address=0.0.0.0"]12 1FROM python:3.102 3WORKDIR /app4 5COPY . .6 7RUN pip install --no-cache-dir -r requirements.txt8 9EXPOSE 786010 11CMD ["streamlit", "run", "app.py", "--server.port=7860", "--server.address=0.0.0.0"]12