Skip to content

Commit

Permalink
add stage for installing turtlebot4 packages
Browse files Browse the repository at this point in the history
  • Loading branch information
Julian Arkenau committed Sep 19, 2023
1 parent 41207b3 commit fc45ea2
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,18 @@ ENV NVIDIA_VISIBLE_DEVICES all
ENV NVIDIA_DRIVER_CAPABILITIES graphics,utility,compute
ENV QT_X11_NO_MITSHM 1

FROM gazebo-nvidia AS turtlebot4

# install turtlebot packages
RUN apt-get update && apt-get install -qq -y --no-install-recommends \
ros-humble-turtlebot4-bringup \
ros-humble-turtlebot4-description \
ros-humble-turtlebot4-msgs \
ros-humble-turtlebot4-navigation \
ros-humble-turtlebot4-node \
ros-humble-turtlebot4-simulator \
&& rm -rf /var/lib/apt/lists/*

ARG WORKSPACE

RUN echo "if [ -f ${WORKSPACE}/install/setup.bash ]; then source ${WORKSPACE}/install/setup.bash; fi" >> /home/${USERNAME}/.bashrc

0 comments on commit fc45ea2

Please sign in to comment.