From a80fcfd6b9a443a7288b65184fa7bc0fdfea4475 Mon Sep 17 00:00:00 2001 From: roboticswithjulia Date: Wed, 27 Nov 2024 11:55:03 +0100 Subject: [PATCH] Add workspace directory creation and reminder message in Dockerfile --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index d7f311da9..3523f6492 100644 --- a/Dockerfile +++ b/Dockerfile @@ -40,4 +40,5 @@ RUN pip install --upgrade pytest # Install the colcon-cargo and colcon-ros-cargo plugins RUN pip install git+https://github.com/colcon/colcon-cargo.git git+https://github.com/colcon/colcon-ros-cargo.git +RUN mkdir -p ~/workspace && echo "Did you forget to mount the repository into the Docker container?" > ~/workspace/HELLO.txt WORKDIR /home/${CONTAINER_USER}/workspace