Added CI for Ubuntu Noble/24.04 + docker

This commit is contained in:
matlabbe
2024-06-02 14:38:50 -07:00
parent 2f21d42555
commit 098301e52c
8 changed files with 197 additions and 4 deletions

20
docker/noble/Dockerfile Normal file
View File

@@ -0,0 +1,20 @@
# Image: introlab3it/rtabmap:noble
FROM introlab3it/rtabmap:noble-deps
# Will be used to read/store databases on host
RUN mkdir -p /root/Documents/RTAB-Map && chmod 777 /root/Documents/RTAB-Map
# Copy current source code
COPY . /root/rtabmap
# Build RTAB-Map project
RUN source /ros_entrypoint.sh && \
cd rtabmap/build && \
cmake -DWITH_OPENGV=ON .. && \
make -j$(nproc) && \
make install && \
cd ../.. && \
rm -rf rtabmap && \
ldconfig