Update my_example.Dockerfile

This commit is contained in:
bjoernellens1 2023-10-23 11:56:41 +02:00 committed by GitHub
parent a559172718
commit 1ab63a12d4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,9 +1,40 @@
# explicitly use Debian for maximum cross-architecture compatibility ARG ROS_DISTRO=humble
FROM debian:bullseye-slim AS hello-world ARG UNDERLAY_WS=/rmp_ws
WORKDIR /APP ########################################
# Custom ROS2 Base Image #
########################################
COPY ./docker . FROM osrf/ros:${ROS_DISTRO}-desktop as base
RUN chmod +x hello.sh #ENV ROS_DISTRO=${ROS_DISTRO}
CMD ["/APP/hello.sh"] SHELL ["/bin/bash", "-c"] # change shell to bash because of better compatibility (standard shell would be sh otherwise).
# Create Colcon workspace with external dependencies
RUN mkdir -p /${UNDERLAY_WS}/src
WORKDIR /${UNDERLAY_WS}/src
COPY my.repos .
RUN mv my.repos dependencies.repos
RUN vcs import < dependencies.repos
# Build the base Colcon workspace, installing dependencies first.
WORKDIR ${UNDERLAY_WS}
RUN source /opt/ros/${ROS_DISTRO}/setup.bash \
&& apt-get update -y \
&& apt-get install -y --no-install-recommends \
ros-${ROS_DISTRO}-turtlesim \
ros-${ROS_DISTRO}-rqt \
&& rosdep install --from-paths src --ignore-src --rosdistro ${ROS_DISTRO} -y
RUN source /opt/ros/${ROS_DISTRO}/setup.bash \
&& colcon build --symlink-install
#ENV UNDERLAY_WS=${UNDERLAY_WS}
# 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" ]