-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Dockerfile: Initial dockerfile w/ packages
- Loading branch information
Showing
1 changed file
with
28 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,28 @@ | ||
FROM unfrobotics/docker-ros2-jazzy:latest | ||
|
||
# update base system | ||
RUN apt-get update && apt-get upgrade -y --no-install-recommends | ||
|
||
# install gazebo & rviz2 packages | ||
RUN apt-get install -y --no-install-recommends \ | ||
nano \ | ||
psmisc \ | ||
qt5ct \ | ||
ros-jazzy-gz-ros2-control \ | ||
ros-jazzy-image-geometry \ | ||
ros-jazzy-ros-gz-bridge \ | ||
ros-jazzy-ros-gz-image \ | ||
ros-jazzy-ros-gz-sim \ | ||
ros-jazzy-ros2controlcli \ | ||
ros-jazzy-rqt-graph \ | ||
ros-jazzy-rqt-image-view \ | ||
ros-jazzy-rviz2 \ | ||
&& rm -rf /var/lib/apt/lists/* | ||
|
||
# ros-jazzy-grid-map-rviz-plugin \ | ||
# ros-jazzy-nav2-bringup \ | ||
# ros-jazzy-nav2-rviz-plugins \ | ||
|
||
# common commands added to history | ||
#RUN echo "ros2 launch nav2_bringup navigation_launch.py use_sim_time:=true" \ | ||
# >> /root/.bash_history |