Skip to content

Commit

Permalink
Remove open3d python virtualenv from Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
lumurillo committed Oct 4, 2024
1 parent 2689d45 commit 048008c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docker/Dockerfile.ci
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ WORKDIR /root/Open3D
RUN ./util/install_deps_ubuntu.sh assume-yes

# Open3D Python dependencies
RUN source /root/open3d/bin/activate && source util/ci_utils.sh \
RUN source util/ci_utils.sh \
&& if [ "${BUILD_CUDA_MODULE}" = "ON" ]; then \
install_python_dependencies with-cuda with-jupyter; \
else \
Expand All @@ -173,7 +173,7 @@ RUN source /root/open3d/bin/activate && source util/ci_utils.sh \
&& pip install -r python/requirements_test.txt

# Open3D Jupyter dependencies
RUN source /root/open3d/bin/activate && mkdir -p /etc/apt/keyrings \
RUN mkdir -p /etc/apt/keyrings \
&& curl -fsSL https://deb.nodesource.com/gpgkey/nodesource-repo.gpg.key \
| gpg --dearmor -o /etc/apt/keyrings/nodesource.gpg \
&& echo "deb [signed-by=/etc/apt/keyrings/nodesource.gpg] https://deb.nodesource.com/node_16.x nodistro main" \
Expand All @@ -186,7 +186,7 @@ RUN source /root/open3d/bin/activate && mkdir -p /etc/apt/keyrings \
&& yarn --version

# Build all
RUN source /root/open3d/bin/activate && \
RUN \
if [ "${BUILD_SYCL_MODULE}" = "ON" ]; then \
export CMAKE_CXX_COMPILER=icpx; \
export CMAKE_C_COMPILER=icx; \
Expand Down

0 comments on commit 048008c

Please sign in to comment.