-
Notifications
You must be signed in to change notification settings - Fork 158
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
31b6166
commit 6c5ec4e
Showing
2 changed files
with
26 additions
and
8 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
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,20 @@ | ||
# ROSPlan_demos docker image | ||
FROM kclplanning/rosplan | ||
|
||
SHELL ["/bin/bash", "-c"] | ||
WORKDIR /root/ws | ||
|
||
# Clone ROSPlan demos | ||
RUN git clone --depth 1 https://github.com/KCL-Planning/rosplan_demos.git src/rosplan_demos | ||
|
||
# Get dependencies | ||
RUN git clone --depth 1 https://github.com/clearpathrobotics/occupancy_grid_utils.git src/occupancy_grid_utils | ||
|
||
|
||
# Further dependencies | ||
RUN source devel/setup.bash &&\ | ||
rosdep update &&\ | ||
rosdep install --from-paths src/occupancy_grid_utils src/rosplan_demos/rosplan_demos_interfaces --ignore-src -q -r -y | ||
|
||
# Build workspace | ||
RUN catkin build --summarize --no-status |