Option-Pricing-Models / Dockerfile
ShivamMore's picture
commit name
12f4bef
raw
history blame contribute delete
174 Bytes
FROM python:3.10
COPY . /app
WORKDIR /app
RUN pip install -r Requirements.txt
EXPOSE 8080
CMD streamlit run --server.port 8080 --server.enableCORS false streamlit_app.py