-
Notifications
You must be signed in to change notification settings - Fork 811
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Ryan Friedman <[email protected]>
- Loading branch information
Showing
1 changed file
with
27 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
ARG ROS_DISTRO=rolling | ||
FROM ros:${ROS_DISTRO}-ros-core | ||
|
||
RUN apt-get update \ | ||
&& apt-get install -y \ | ||
ros-dev-tools \ | ||
wget | ||
|
||
WORKDIR /root/ros2_ws/ | ||
RUN mkdir -p src | ||
COPY tools/ros2_dependencies.repos . | ||
RUN vcs import --input ros2_dependencies.repos src | ||
RUN rosdep init | ||
|
||
COPY . src/grid_map | ||
RUN ls src/grid_map | ||
|
||
SHELL ["/bin/bash", "-c"] | ||
RUN apt-get update \ | ||
&& rosdep update | ||
|
||
RUN source /opt/ros/${ROS_DISTRO}/setup.bash \ | ||
&& rosdep install -y --ignore-src --from-paths src --skip-keys slam_toolbox | ||
|
||
RUN source /opt/ros/${ROS_DISTRO}/setup.bash \ | ||
&& colcon build --symlink-install --packages-up-to grid_map | ||
|