78 lines
3.1 KiB
Docker
78 lines
3.1 KiB
Docker
ARG ROS_DISTRO=humble
|
|
FROM ros:${ROS_DISTRO}-ros-base
|
|
|
|
### Use bash by default
|
|
SHELL ["/bin/bash", "-c"]
|
|
|
|
### Define working directory
|
|
ARG WS_DIR=/root/ws
|
|
ENV WS_DIR=${WS_DIR}
|
|
ENV WS_SRC_DIR=${WS_DIR}/src
|
|
ENV WS_INSTALL_DIR=${WS_DIR}/install
|
|
ENV WS_LOG_DIR=${WS_DIR}/log
|
|
WORKDIR ${WS_DIR}
|
|
|
|
### Install Gazebo
|
|
ARG IGNITION_VERSION=fortress
|
|
ENV IGNITION_VERSION=${IGNITION_VERSION}
|
|
RUN apt-get update && \
|
|
apt-get install -yq --no-install-recommends \
|
|
ignition-${IGNITION_VERSION} && \
|
|
rm -rf /var/lib/apt/lists/*
|
|
|
|
### Install extra dependencies
|
|
RUN apt-get update && \
|
|
apt-get install -yq python3-pil.imagetk && \
|
|
apt-get install -yq ros-${ROS_DISTRO}-pilz-industrial-motion-planner && \
|
|
apt-get install -yq tmux && \
|
|
apt-get install -yq ros-${ROS_DISTRO}-desktop && \
|
|
apt-get install -yq ros-${ROS_DISTRO}-rclcpp-components
|
|
|
|
### Install AxiDraw
|
|
RUN apt-get update && \
|
|
apt-get install -yq python3-pip && \
|
|
pip install --upgrade --upgrade-strategy eager packaging && \
|
|
pip install https://cdn.evilmadscientist.com/dl/ad/public/AxiDraw_API.zip --upgrade --upgrade-strategy eager
|
|
|
|
### Install splipy
|
|
RUN apt-get update && \
|
|
apt-get install -yq python3-pip && \
|
|
pip install --upgrade --upgrade-strategy eager splipy
|
|
|
|
### Import and install dependencies, then build these dependencies (not ign_moveit2_examples yet)
|
|
COPY ./drawing_robot_ros2.repos ${WS_SRC_DIR}/ign_moveit2_examples/drawing_robot_ros2.repos
|
|
RUN vcs import --recursive --shallow ${WS_SRC_DIR} < ${WS_SRC_DIR}/ign_moveit2_examples/drawing_robot_ros2.repos && \
|
|
rosdep update && \
|
|
apt-get update && \
|
|
rosdep install -y -r -i --rosdistro "${ROS_DISTRO}" --from-paths ${WS_SRC_DIR} && \
|
|
rm -rf /var/lib/apt/lists/* && \
|
|
source "/opt/ros/${ROS_DISTRO}/setup.bash" && \
|
|
colcon build --merge-install --symlink-install --cmake-args "-DCMAKE_BUILD_TYPE=Release" && \
|
|
rm -rf ${WS_LOG_DIR}
|
|
|
|
### Copy over the rest of ign_moveit2_examples, then install dependencies and build
|
|
COPY ./ ${WS_SRC_DIR}/ign_moveit2_examples/
|
|
RUN rosdep update && \
|
|
apt-get update && \
|
|
rosdep install -y -r -i --rosdistro "${ROS_DISTRO}" --from-paths ${WS_SRC_DIR} && \
|
|
rm -rf /var/lib/apt/lists/* && \
|
|
source "/opt/ros/${ROS_DISTRO}/setup.bash" && \
|
|
colcon build --merge-install --symlink-install --cmake-args "-DCMAKE_BUILD_TYPE=Release" && \
|
|
rm -rf ${WS_LOG_DIR}
|
|
|
|
### Copy code built on top of example ign_moveit2_examples
|
|
# TODO clean build process
|
|
COPY ./src/* ${WS_SRC_DIR}/
|
|
RUN rosdep update && \
|
|
apt-get update && \
|
|
rosdep install -y -r -i --rosdistro "${ROS_DISTRO}" --from-paths ${WS_SRC_DIR} && \
|
|
rm -rf /var/lib/apt/lists/* && \
|
|
source "/opt/ros/${ROS_DISTRO}/setup.bash" && \
|
|
colcon build --merge-install --symlink-install --cmake-args "-DCMAKE_BUILD_TYPE=Release" && \
|
|
rm -rf ${WS_LOG_DIR}
|
|
|
|
### Add workspace to the ROS entrypoint
|
|
### Source ROS workspace inside `~/.bashrc` to enable autocompletion
|
|
RUN sed -i '$i source "${WS_INSTALL_DIR}/local_setup.bash" --' /ros_entrypoint.sh && \
|
|
sed -i '$a source "/opt/ros/${ROS_DISTRO}/setup.bash"' ~/.bashrc
|