Spaces:
Sleeping
Sleeping
Commit ·
7a38b9e
1
Parent(s): 8afdd6d
FINAL FIX: Forcibly re-installed dependencies using --ignore-installed to resolve persistent 'mount_app' error.
Browse files- Dockerfile +1 -1
Dockerfile
CHANGED
|
@@ -4,7 +4,7 @@ WORKDIR /app
|
|
| 4 |
|
| 5 |
COPY requirements.txt .
|
| 6 |
|
| 7 |
-
RUN pip install --no-cache-dir --
|
| 8 |
|
| 9 |
COPY app.py .
|
| 10 |
|
|
|
|
| 4 |
|
| 5 |
COPY requirements.txt .
|
| 6 |
|
| 7 |
+
RUN pip install --no-cache-dir --ignore-installed -r requirements.txt
|
| 8 |
|
| 9 |
COPY app.py .
|
| 10 |
|