workflow: use current copy of repo for docker instead of cloning

This commit is contained in:
matlabbe
2022-05-28 16:30:28 -04:00
parent cb28a86492
commit 2a56d00416
4 changed files with 16 additions and 15 deletions
+2 -2
View File
@@ -2,8 +2,8 @@
* Available images on [introlab3it/rtabmap_ros](https://hub.docker.com/r/introlab3it/rtabmap_ros/):
```
indigo, indigo-latest
kinetic, kinetic-latest
indigo
kinetic
melodic, melodic-latest
noetic, noetic-latest
```
+6 -5
View File
@@ -1,13 +1,14 @@
FROM introlab3it/rtabmap:18.04
ARG CACHE_DATE=2016-01-01
RUN source /ros_entrypoint.sh && \
mkdir -p catkin_ws/src && \
cd catkin_ws/src && \
catkin_init_workspace && \
git clone https://github.com/introlab/rtabmap_ros.git && \
cd .. && \
catkin_init_workspace
COPY . catkin_ws/src/rtabmap_ros
RUN source /ros_entrypoint.sh && \
cd catkin_ws && \
catkin_make -j1 -DRTABMAP_SYNC_MULTI_RGBD=ON -DCMAKE_INSTALL_PREFIX=/opt/ros/melodic install && \
cd && \
rm -rf catkin_ws
+6 -5
View File
@@ -1,13 +1,14 @@
FROM introlab3it/rtabmap:20.04
ARG CACHE_DATE=2016-01-01
RUN source /ros_entrypoint.sh && \
mkdir -p catkin_ws/src && \
cd catkin_ws/src && \
catkin_init_workspace && \
git clone https://github.com/introlab/rtabmap_ros.git && \
cd .. && \
catkin_init_workspace
COPY . catkin_ws/src/rtabmap_ros
RUN source /ros_entrypoint.sh && \
cd catkin_ws && \
catkin_make -j1 -DRTABMAP_SYNC_MULTI_RGBD=ON -DCMAKE_INSTALL_PREFIX=/opt/ros/noetic install && \
cd && \
rm -rf catkin_ws