2024-05-05 02:03:03 +08:00
|
|
|
ARG BASE_IMAGE
|
|
|
|
FROM ${BASE_IMAGE}
|
|
|
|
|
|
|
|
RUN --mount=type=cache,target=/var/cache/apt \
|
|
|
|
--mount=type=bind,source=scripts/install-unitree-ros2.sh,target=/tmp/install-unitree-ros2.sh \
|
|
|
|
bash /tmp/install-unitree-ros2.sh
|
|
|
|
|
2024-05-31 11:51:13 +08:00
|
|
|
RUN apt install -y ros-humble-isaac-ros-h264-decoder ros-humble-isaac-ros-h264-encoder
|
2024-05-30 03:20:07 +08:00
|
|
|
|
2024-06-05 11:11:19 +08:00
|
|
|
RUN mkdir -p /realsense-ws/src && cd /realsense-ws/src && git clone https://github.com/IntelRealSense/realsense-ros.git && cd .. && source /opt/ros/humble/setup.bash && colcon build
|
|
|
|
USER $USERNAME
|