JoelJebaraj93 commited on
Commit
0eb54b1
·
verified ·
1 Parent(s): 98f19b4

Create Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +14 -0
Dockerfile ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Dockerfile
2
+
3
+ FROM python:3.9-slim
4
+
5
+ WORKDIR /app
6
+
7
+ COPY requirements.txt ./
8
+ RUN pip install -r requirements.txt
9
+
10
+ COPY . .
11
+
12
+ EXPOSE 7860
13
+
14
+ CMD ["streamlit", "run", "app.py", "--server.port=7860", "--server.enableCORS=false"]