Skip to content

Commit

Permalink
Temp fix - moveit/moveit2#456
Browse files Browse the repository at this point in the history
Fix

New fix]
  • Loading branch information
swilcock0 committed May 21, 2021
1 parent 5a7f09d commit fa37df1
Showing 1 changed file with 12 additions and 5 deletions.
17 changes: 12 additions & 5 deletions moveit_update/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,20 @@ USER root

# Install latest version of moveit

COPY --from=moveit /root/ws_moveit/ /home/ros/moveit_ws/

RUN apt-get update -qq &&\
cd ~/moveit_ws/src &&\
rosdep install -r --from-paths . --ignore-src --rosdistro foxy -y --as-root=apt:false && \
RUN apt-get update &&\
mkdir -p ~/moveit_ws/src && \
cd ~/moveit_ws/src && \
wget https://raw.githubusercontent.com/ros-planning/moveit2/main/moveit2.repos &&\
vcs import < moveit2.repos &&\
git clone https://github.com/AndyZe/moveit2.git -b andyz/fix_coll_checking &&\
rosdep install -r --from-paths . --ignore-src --rosdistro foxy -y &&\
cd .. &&\
rm -rf /var/lib/apt/lists/*

RUN cd ~/moveit_ws/ &&\
. /opt/ros/foxy/setup.sh &&\
colcon build --event-handlers desktop_notification- status- --cmake-args -DCMAKE_BUILD_TYPE=Release

# Prerequisites & install debian ros2_control pkg
RUN apt-get update &&\
apt-get install -y ros-foxy-test-msgs libopenblas-dev &&\
Expand Down

0 comments on commit fa37df1

Please sign in to comment.