Spaces:
Sleeping
Sleeping
Update Dockerfile
Browse files- 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 |
-
|
|
|
|
|
|
| 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"]
|