Spaces:
Sleeping
Sleeping
checkout
Browse files- Dockerfile +2 -1
Dockerfile
CHANGED
@@ -15,8 +15,9 @@ COPY ./pre-requirements.txt /code/pre-requirements.txt
|
|
15 |
RUN pip install --no-cache-dir -r /code/pre-requirements.txt
|
16 |
RUN pip install --no-cache-dir -r /code/requirements.txt
|
17 |
|
18 |
-
RUN git clone https://github.com/facebookresearch/pytorch3d.git
|
19 |
&& cd pytorch3d \
|
|
|
20 |
&& pip install -e .
|
21 |
|
22 |
|
|
|
15 |
RUN pip install --no-cache-dir -r /code/pre-requirements.txt
|
16 |
RUN pip install --no-cache-dir -r /code/requirements.txt
|
17 |
|
18 |
+
RUN git clone https://github.com/facebookresearch/pytorch3d.git \
|
19 |
&& cd pytorch3d \
|
20 |
+
&& git checkout v0.7.6 \
|
21 |
&& pip install -e .
|
22 |
|
23 |
|