Lokiiparihar commited on
Commit
cd84530
·
verified ·
1 Parent(s): 29ac5af

Create Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +7 -0
Dockerfile ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ FROM python:3.9
2
+
3
+ RUN pip install streamlit requests
4
+
5
+ COPY app.py /app.py
6
+
7
+ CMD ["streamlit", "run", "/app.py", "--server.port=7860", "--server.address=0.0.0.0"]