Spaces:
Sleeping
Sleeping
Commit
·
755e79c
1
Parent(s):
db6113f
Install error fix attemp 5
Browse files- Dockerfile +2 -1
Dockerfile
CHANGED
@@ -13,7 +13,8 @@ COPY --chown=user requirements.txt ./
|
|
13 |
|
14 |
# Install dependencies in stages to handle build dependencies
|
15 |
RUN pip install --upgrade pip && \
|
16 |
-
pip install --no-cache-dir packaging ninja && \
|
|
|
17 |
pip install --no-cache-dir -r requirements.txt
|
18 |
|
19 |
COPY --chown=user . .
|
|
|
13 |
|
14 |
# Install dependencies in stages to handle build dependencies
|
15 |
RUN pip install --upgrade pip && \
|
16 |
+
pip install --no-cache-dir packaging ninja wheel setuptools && \
|
17 |
+
pip install --no-cache-dir torch==2.2.2 && \
|
18 |
pip install --no-cache-dir -r requirements.txt
|
19 |
|
20 |
COPY --chown=user . .
|