Skip to content

Commit

Permalink
Dockerfile: Initial dockerfile w/ packages
Browse files Browse the repository at this point in the history
  • Loading branch information
wltjr committed Jun 30, 2024
1 parent de7423c commit b514bd9
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions Dockerfile
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

0 comments on commit b514bd9

Please sign in to comment.