Spaces:
Paused
Paused
Update Dockerfile
Browse files- Dockerfile +1 -1
Dockerfile
CHANGED
|
@@ -9,7 +9,7 @@ COPY requirements.txt .
|
|
| 9 |
COPY app.py .
|
| 10 |
|
| 11 |
# Install dependencies
|
| 12 |
-
RUN pip install -
|
| 13 |
|
| 14 |
# Expose Streamlit port
|
| 15 |
EXPOSE 8501
|
|
|
|
| 9 |
COPY app.py .
|
| 10 |
|
| 11 |
# Install dependencies
|
| 12 |
+
RUN pip install --no-cache-dir -r requirements.txt
|
| 13 |
|
| 14 |
# Expose Streamlit port
|
| 15 |
EXPOSE 8501
|