| 12345678910111213141516171819202122232425262728 | 
							- FROM ros:noetic
 
- RUN apt-get update && apt-get install -y --no-install-recommends \
 
-   wget nano build-essential libomp-dev clang lld git\
 
-   ros-noetic-geodesy ros-noetic-pcl-ros ros-noetic-nmea-msgs \
 
-   ros-noetic-rviz ros-noetic-tf-conversions ros-noetic-libg2o \
 
-   && apt-get clean \
 
-   && rm -rf /var/lib/apt/lists/*
 
- RUN mkdir -p /root/catkin_ws/src
 
- WORKDIR /root/catkin_ws/src
 
- RUN /bin/bash -c '. /opt/ros/noetic/setup.bash; catkin_init_workspace'
 
- RUN git config --global http.postBuffer 2M
 
- RUN git clone https://github.com/SMRT-AIST/fast_gicp.git --recursive --depth=1
 
- RUN git clone https://github.com/koide3/hdl_graph_slam.git --depth=1
 
- COPY . /root/catkin_ws/src/ndt_omp/
 
- RUN update-alternatives --install /usr/bin/ld ld /usr/bin/ld.lld 50
 
- WORKDIR /root/catkin_ws
 
- RUN /bin/bash -c '. /opt/ros/noetic/setup.bash; CC=clang CXX=clang++ catkin_make'
 
- RUN sed -i "6i source \"/root/catkin_ws/devel/setup.bash\"" /ros_entrypoint.sh
 
- WORKDIR /
 
- ENTRYPOINT ["/ros_entrypoint.sh"]
 
- CMD ["bash"]
 
 
  |