Skip to content

Commit

Permalink
Remove incorrect installation of zed-ros-wrapper
Browse files Browse the repository at this point in the history
  • Loading branch information
j3soon committed Nov 23, 2023
1 parent 15bbfe2 commit 678a9f4
Showing 1 changed file with 15 additions and 13 deletions.
28 changes: 15 additions & 13 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 678a9f4

Please sign in to comment.