yuanze1024 commited on
Commit
55e7aed
·
1 Parent(s): 5b2dde1

update dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -1
Dockerfile CHANGED
@@ -23,7 +23,7 @@ RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
23
  ENV TORCH_CUDA_ARCH_LIST="8.6"
24
 
25
  # Install Pointnet2_PyTorch
26
- RUN pip install "git+git://github.com/yuanze1024/Pointnet2_PyTorch.git#egg=pointnet2_ops&subdirectory=pointnet2_ops_lib"
27
 
28
  COPY --chown=user:user . /code
29
 
 
23
  ENV TORCH_CUDA_ARCH_LIST="8.6"
24
 
25
  # Install Pointnet2_PyTorch
26
+ RUN git clone https://github.com/yuanze1024/Pointnet2_PyTorch.git && cd Pointnet2_PyTorch/pointnet2_ops_lib && pip install .
27
 
28
  COPY --chown=user:user . /code
29