ros2_docker_template/docker/my_example.Dockerfile

89 lines
2.5 KiB
Docker
Raw Normal View History

2023-10-23 09:56:41 +00:00
ARG ROS_DISTRO=humble
2023-10-23 10:02:29 +00:00
ARG UNDERLAY_WS=/base_ws
ARG OVERLAY_WS=/overlay_ws
2023-08-24 10:41:03 +00:00
2023-10-23 09:56:41 +00:00
########################################
# Custom ROS2 Base Image #
########################################
2023-10-23 09:18:48 +00:00
2023-10-23 09:56:41 +00:00
FROM osrf/ros:${ROS_DISTRO}-desktop as base
#ENV ROS_DISTRO=${ROS_DISTRO}
2023-08-24 10:41:03 +00:00
2023-10-23 09:56:41 +00:00
SHELL ["/bin/bash", "-c"] # change shell to bash because of better compatibility (standard shell would be sh otherwise).
# Create Colcon workspace with external dependencies
2023-10-23 10:17:44 +00:00
RUN mkdir -p /base_ws/src
WORKDIR /base_ws/src
2023-10-23 09:56:41 +00:00
COPY my.repos .
RUN mv my.repos dependencies.repos
RUN vcs import < dependencies.repos
# Build the base Colcon workspace, installing dependencies first.
2023-10-23 10:17:44 +00:00
WORKDIR /base_ws
2023-10-23 09:56:41 +00:00
RUN source /opt/ros/${ROS_DISTRO}/setup.bash \
&& apt-get update -y \
&& apt-get install -y --no-install-recommends \
ros-${ROS_DISTRO}-turtlesim \
2023-10-23 11:36:56 +00:00
ros-${ROS_DISTRO}-rqt \
2023-10-23 11:43:09 +00:00
&& rosdep install --from-paths src --ignore-src --rosdistro ${ROS_DISTRO} -y
2023-10-23 11:28:29 +00:00
RUN source /opt/ros/${ROS_DISTRO}/setup.bash \
&& colcon build --symlink-install
2023-10-23 09:56:41 +00:00
# Set up the entrypoint
COPY ./docker/my_entrypoint.sh /entrypoint.sh
RUN chmod +x /entrypoint.sh
# Update repository at the end of this build stage
RUN vcs pull src
ENTRYPOINT [ "/entrypoint.sh" ]
2023-10-23 12:03:53 +00:00
CMD [ "ros2 run unitree_legged_real ros2_udp highlevel" ]
2023-10-23 10:02:29 +00:00
2023-10-23 11:28:29 +00:00
#############################################################
# Overlay Image -- Building Unitree GO1 ROS2 implementation #
#############################################################
2023-10-23 10:02:29 +00:00
FROM base AS overlay
# Create an overlay Colcon workspace
2023-10-23 10:17:44 +00:00
RUN mkdir -p /overlay_ws/src
WORKDIR /overlay_ws/src
2023-10-23 10:02:29 +00:00
COPY my_extended.repos ./overlay.repos
2023-10-23 11:28:29 +00:00
RUN vcs import < overlay.repos \
2023-10-23 11:36:56 +00:00
&& cd unitree_go1 \
2023-10-23 11:28:29 +00:00
&& git clone -b v3.5.1 https://github.com/unitreerobotics/unitree_legged_sdk \
&& mv ros2_unitree_legged_msgs/ ..
WORKDIR /lcm_ws
RUN cd /lcm_ws \
2023-10-23 11:40:31 +00:00
#&& git clone -b v1.4.0 https://github.com/lcm-proj/lcm \
&& git clone https://github.com/lcm-proj/lcm \
2023-10-23 11:28:29 +00:00
&& cd lcm \
&& mkdir build \
&& cd build \
&& cmake ../ \
&& make \
2023-10-23 11:29:15 +00:00
&& make install
2023-10-23 10:02:29 +00:00
2023-10-23 10:17:44 +00:00
WORKDIR /overlay_ws
2023-10-23 10:02:29 +00:00
ENV DEBIAN_FRONTEND noninteractive
2023-10-23 10:17:44 +00:00
RUN source /base_ws/install/setup.bash \
2023-10-23 10:02:29 +00:00
&& apt-get update \
&& DEBIAN_FRONTEND=noninteractive apt-get install \
2023-10-23 11:28:29 +00:00
nano \
2023-10-23 11:43:09 +00:00
#&& rosdep install --from-paths src --ignore-src --rosdistro ${ROS_DISTRO} -y \
2023-10-23 10:02:29 +00:00
&& rm -rf /var/lib/apt/lists/*
2023-10-23 10:17:44 +00:00
RUN source /base_ws/install/setup.bash \
2023-10-23 11:28:29 +00:00
&& colcon build --symlink-install
2023-10-23 10:02:29 +00:00
# Set up the entrypoint
COPY ./docker/my_entrypoint.sh /entrypoint.sh
RUN chmod +x /entrypoint.sh
# Update repository at the end of this build stage
RUN vcs pull src
ENTRYPOINT [ "/entrypoint.sh" ]