13 lines
384 B
Docker
13 lines
384 B
Docker
|
FROM ros:noetic-ros-core
|
||
|
|
||
|
RUN apt-get update -y && apt-get install -y ros-noetic-urg-node \
|
||
|
&& rm -rf /var/lib/apt/lists/*
|
||
|
|
||
|
SHELL ["/bin/bash", "--login", "-c"]
|
||
|
|
||
|
RUN source /opt/ros/noetic/setup.bash && \
|
||
|
echo "source /opt/ros/noetic/setup.bash" >> ~/.bashrc
|
||
|
ENV ROS_MASTER_URI=http://10.104.16.29:11311/
|
||
|
COPY entrypoint.sh /entrypoint.sh
|
||
|
ENTRYPOINT ["/entrypoint.sh"]
|