AndreasLH commited on
Commit
aa55c37
·
1 Parent(s): f330eb1
Files changed (1) hide show
  1. 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@v0.7.6 \
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