UmaKumpatla commited on
Commit
0c63cba
·
verified ·
1 Parent(s): c9a5124

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +9 -0
Dockerfile CHANGED
@@ -25,3 +25,12 @@ EXPOSE 8501
25
  # Run the app
26
  CMD ["streamlit", "run", "streamlit_app.py"]
27
 
 
 
 
 
 
 
 
 
 
 
25
  # Run the app
26
  CMD ["streamlit", "run", "streamlit_app.py"]
27
 
28
+
29
+ FROM python:3.10-slim
30
+
31
+ COPY requirements.txt .
32
+ RUN pip install -r requirements.txt
33
+
34
+ COPY streamlit_app.py .
35
+
36
+ CMD ["streamlit", "run", "streamlit_app.py"]