7 lines
215 B
Docker
7 lines
215 B
Docker
ARG ROS_DISTRO=humble
|
|
FROM husarnet/ros:humble-ros-core
|
|
SHELL ["/bin/bash", "-c"]
|
|
RUN apt-get update && apt-get install -y \
|
|
ros-$ROS_DISTRO-urg-node
|
|
|
|
RUN echo "source /opt/ros/$ROS_DISTRO/setup.bash" >> ~/.bashrc |