From 678a9f47866a4cc721b4128848e1270423b0244a Mon Sep 17 00:00:00 2001 From: Johnson Sun Date: Thu, 23 Nov 2023 19:36:39 +0800 Subject: [PATCH] Remove incorrect installation of zed-ros-wrapper --- Dockerfile | 28 +++++++++++++++------------- 1 file changed, 15 insertions(+), 13 deletions(-) diff --git a/Dockerfile b/Dockerfile index f1ae436..3121dc1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -135,20 +135,22 @@ CMD ["bash"] # ==================== # Custom Commands # ==================== -# Ref: https://github.com/stereolabs/zed-ros-wrapper#build-the-repository -# The commands below are slightly modified to fit our need # Install common tools RUN apt-get update && apt-get install -y git vim tmux \ && rm -rf /var/lib/apt/lists/* -RUN mkdir -p ~/catkin_ws/src \ - && cd ~/catkin_ws/src \ - && git clone https://github.com/stereolabs/zed-ros-wrapper.git \ - && cd zed-ros-wrapper \ - && git reset --hard c37f65dfec547d6739d94c6109c3eb3fc7fecbeb # branch v3.8.x \ - && git pull --recurse-submodules # update recursively all the submodules \ - && cd ../../ \ - && . /opt/ros/noetic/setup.sh \ - && rosdep install --from-paths src --ignore-src -r -y \ - && catkin_make -DCMAKE_BUILD_TYPE=Release \ - && . ./devel/setup.sh + +# Ref: https://github.com/stereolabs/zed-ros-wrapper#build-the-repository +# The commands below are slightly modified to fit our need + +# RUN mkdir -p ~/catkin_ws/src \ +# && cd ~/catkin_ws/src \ +# && git clone https://github.com/stereolabs/zed-ros-wrapper.git \ +# && cd zed-ros-wrapper \ +# && git reset --hard 71eb2bb434f059e17191503b707267938f5a1b7f \ +# && git pull --recurse-submodules \ +# && cd ../../ \ +# && . /opt/ros/noetic/setup.sh \ +# && rosdep install --from-paths src --ignore-src -r -y \ +# && catkin_make -DCMAKE_BUILD_TYPE=Release \ +# && . ./devel/setup.sh