Update my_example.Dockerfile

This commit is contained in:
bjoernellens1 2023-10-23 12:12:47 +02:00 committed by GitHub
parent 87148d1182
commit eb67079042
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -12,8 +12,8 @@ FROM osrf/ros:${ROS_DISTRO}-desktop as base
SHELL ["/bin/bash", "-c"] # change shell to bash because of better compatibility (standard shell would be sh otherwise). SHELL ["/bin/bash", "-c"] # change shell to bash because of better compatibility (standard shell would be sh otherwise).
# First checks # First checks
RUN echo "Underlay WS: \${UNDERLAY_WS}" RUN echo "Underlay WS:" && ${UNDERLAY_WS}
RUN echo "Overlay WS: \${OVERLAY_WS}" RUN echo "Overlay WS:" && ${OVERLAY_WS}
# Create Colcon workspace with external dependencies # Create Colcon workspace with external dependencies
RUN mkdir -p ${UNDERLAY_WS}/src RUN mkdir -p ${UNDERLAY_WS}/src