This commit is contained in:
wittenator
2023-12-02 19:41:01 +01:00
parent 8383aae8ff
commit be853eea93
22 changed files with 87620 additions and 387 deletions

14
Dockerfile Normal file
View File

@ -0,0 +1,14 @@
# build ROS2 Iron src in container and install depenedencies with rosdep
FROM ros:iron
ADD src /root/ros2_ws/src
RUN apt-get update && apt-get install -y \
python3-argcomplete \
python3-colcon-common-extensions \
python3-vcstool \
&& rm -rf /var/lib/apt/lists/*
CMD ["bash"]