Dockerfile.indigo 3.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. # Copyright 2016 The Cartographer Authors
  2. #
  3. # Licensed under the Apache License, Version 2.0 (the "License");
  4. # you may not use this file except in compliance with the License.
  5. # You may obtain a copy of the License at
  6. #
  7. # http://www.apache.org/licenses/LICENSE-2.0
  8. #
  9. # Unless required by applicable law or agreed to in writing, software
  10. # distributed under the License is distributed on an "AS IS" BASIS,
  11. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. # See the License for the specific language governing permissions and
  13. # limitations under the License.
  14. FROM ros:indigo
  15. ARG CARTOGRAPHER_VERSION=master
  16. # We require a GitHub access token to be passed.
  17. ARG github_token
  18. # First, we invalidate the entire cache if googlecartographer/cartographer has
  19. # changed. This file's content changes whenever master changes. See:
  20. # http://stackoverflow.com/questions/36996046/how-to-prevent-dockerfile-caching-git-clone
  21. ADD https://api.github.com/repos/googlecartographer/cartographer/git/refs/heads/master?access_token=$github_token \
  22. cartographer_ros/cartographer_version.json
  23. # wstool needs the updated rosinstall file to clone the correct repos.
  24. COPY cartographer_ros.rosinstall cartographer_ros/
  25. COPY scripts/prepare_catkin_workspace.sh cartographer_ros/scripts/
  26. RUN CARTOGRAPHER_VERSION=$CARTOGRAPHER_VERSION \
  27. cartographer_ros/scripts/prepare_catkin_workspace.sh
  28. # rosdep needs the updated package.xml files to install the correct debs.
  29. COPY cartographer_ros/package.xml catkin_ws/src/cartographer_ros/cartographer_ros/
  30. COPY cartographer_ros_msgs/package.xml catkin_ws/src/cartographer_ros/cartographer_ros_msgs/
  31. COPY cartographer_rviz/package.xml catkin_ws/src/cartographer_ros/cartographer_rviz/
  32. COPY scripts/install_debs.sh cartographer_ros/scripts/
  33. RUN cartographer_ros/scripts/install_debs.sh && rm -rf /var/lib/apt/lists/*
  34. # Install proto3.
  35. RUN /catkin_ws/src/cartographer/scripts/install_proto3.sh
  36. # Build, install, and test all packages individually to allow caching. The
  37. # ordering of these steps must match the topological package ordering as
  38. # determined by Catkin.
  39. COPY scripts/install.sh cartographer_ros/scripts/
  40. COPY scripts/catkin_test_results.sh cartographer_ros/scripts/
  41. COPY cartographer_ros_msgs catkin_ws/src/cartographer_ros/cartographer_ros_msgs/
  42. RUN cartographer_ros/scripts/install.sh --pkg cartographer_ros_msgs && \
  43. cartographer_ros/scripts/install.sh --pkg cartographer_ros_msgs \
  44. --catkin-make-args run_tests && \
  45. cartographer_ros/scripts/catkin_test_results.sh build_isolated/cartographer_ros_msgs
  46. RUN cartographer_ros/scripts/install.sh --pkg ceres-solver
  47. RUN cartographer_ros/scripts/install.sh --pkg cartographer && \
  48. cartographer_ros/scripts/install.sh --pkg cartographer --make-args test
  49. COPY cartographer_ros catkin_ws/src/cartographer_ros/cartographer_ros/
  50. RUN cartographer_ros/scripts/install.sh --pkg cartographer_ros && \
  51. cartographer_ros/scripts/install.sh --pkg cartographer_ros \
  52. --catkin-make-args run_tests && \
  53. cartographer_ros/scripts/catkin_test_results.sh build_isolated/cartographer_ros
  54. COPY cartographer_rviz catkin_ws/src/cartographer_ros/cartographer_rviz/
  55. RUN cartographer_ros/scripts/install.sh --pkg cartographer_rviz && \
  56. cartographer_ros/scripts/install.sh --pkg cartographer_rviz \
  57. --catkin-make-args run_tests && \
  58. cartographer_ros/scripts/catkin_test_results.sh build_isolated/cartographer_rviz
  59. COPY scripts/ros_entrypoint.sh /
  60. # A BTRFS bug may prevent us from cleaning up these directories.
  61. # https://btrfs.wiki.kernel.org/index.php/Problem_FAQ#I_cannot_delete_an_empty_directory
  62. RUN rm -rf cartographer_ros catkin_ws || true