dhani10 commited on
Commit
a4eebdf
·
verified ·
1 Parent(s): 72e6af7

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +4 -2
Dockerfile CHANGED
@@ -7,8 +7,10 @@ COPY SuperKart.csv /app/
7
 
8
  COPY requirements.txt .
9
 
10
- RUN pip install --no-cache-dir -r requirements.txt
 
11
 
12
  COPY app.py .
13
 
14
- CMD ["streamlit", "run", "app.py", "--server.port=8501", "--server.address=0.0.0.0"]
 
 
7
 
8
  COPY requirements.txt .
9
 
10
+ #RUN pip install --no-cache-dir -r requirements.txt
11
+ RUN pip install -r requirements.txt
12
 
13
  COPY app.py .
14
 
15
+
16
+ CMD ["streamlit", "run", "app.py", "--server.port=8501", "--server.address=0.0.0.0"]