Spaces:
Runtime error
Runtime error
update
Browse files- Dockerfile +1 -2
Dockerfile
CHANGED
|
@@ -4,9 +4,8 @@ WORKDIR /code
|
|
| 4 |
|
| 5 |
COPY requirements.txt requirements.txt
|
| 6 |
|
| 7 |
-
# FORCE install exact versions (prevents HF from upgrading sklearn)
|
| 8 |
RUN pip install --no-cache-dir --upgrade pip
|
| 9 |
-
RUN pip install --no-cache-dir -
|
| 10 |
|
| 11 |
COPY . .
|
| 12 |
|
|
|
|
| 4 |
|
| 5 |
COPY requirements.txt requirements.txt
|
| 6 |
|
|
|
|
| 7 |
RUN pip install --no-cache-dir --upgrade pip
|
| 8 |
+
RUN pip install --no-cache-dir -r requirements.txt
|
| 9 |
|
| 10 |
COPY . .
|
| 11 |
|