forked from VT-ASIM-LAB/ouster_lidar_driver_old
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile
72 lines (55 loc) · 2.3 KB
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
ARG ROS_DISTRO=noetic
FROM ros:${ROS_DISTRO}-ros-core AS build-env
ENV DEBIAN_FRONTEND=noninteractive \
BUILD_HOME=/var/lib/build \
OUSTER_SDK_PATH=/opt/ouster_lidar_driver
RUN set -xue \
# Kinetic and melodic have python3 packages but they seem to conflict
&& [ $ROS_DISTRO = "noetic" ] && PY=python3 || PY=python \
# Turn off installing extra packages globally to slim down rosdep install
&& echo 'APT::Install-Recommends "0";' > /etc/apt/apt.conf.d/01norecommend \
&& apt-get update \
&& apt-get install -y \
build-essential cmake git \
fakeroot dpkg-dev debhelper \
$PY-rosdep $PY-rospkg $PY-bloom
# Set up non-root build user
ARG BUILD_UID=1000
ARG BUILD_GID=${BUILD_UID}
RUN set -xe \
&& groupadd -o -g ${BUILD_GID} build \
&& useradd -o -u ${BUILD_UID} -d ${BUILD_HOME} -rm -s /bin/bash -g build build
# Install build dependencies using rosdep
COPY --chown=build:build ouster_client/package.xml ${OUSTER_SDK_PATH}/ouster_client/package.xml
COPY --chown=build:build cav_msgs/package.xml ${OUSTER_SDK_PATH}/cav_msgs/package.xml
RUN set -xe \
&& apt-get update \
&& rosdep init \
&& rosdep update --rosdistro=${ROS_DISTRO} \
&& rosdep install -y --from-paths ${OUSTER_SDK_PATH}
COPY --chown=build:build ouster_ros/package.xml ${OUSTER_SDK_PATH}/ouster_ros/package.xml
RUN sudo rm ${OUSTER_SDK_PATH}/ouster_client/package.xml
RUN sudo git clone --depth 1 https://github.com/vishnubob/wait-for-it.git ~/.base-image/wait-for-it &&\
sudo mv ~/.base-image/wait-for-it/wait-for-it.sh /usr/bin
# Set up build environment
COPY --chown=build:build cmake ${OUSTER_SDK_PATH}/cmake
COPY --chown=build:build ouster_client ${OUSTER_SDK_PATH}/ouster_client
COPY --chown=build:build ouster_viz ${OUSTER_SDK_PATH}/ouster_viz
COPY --chown=build:build ouster_ros ${OUSTER_SDK_PATH}/ouster_ros
COPY --chown=build:build cav_msgs ${OUSTER_SDK_PATH}/cav_msgs
RUN sudo rm ${OUSTER_SDK_PATH}/ouster_client/package.xml
USER build:build
WORKDIR ${BUILD_HOME}
RUN set -xe \
&& mkdir src \
&& ln -s ${OUSTER_SDK_PATH} ./src
FROM build-env
RUN /opt/ros/${ROS_DISTRO}/env.sh catkin_make -DCMAKE_BUILD_TYPE=Release
# Entrypoint for running Ouster ros:
#
# Usage: docker run --rm -it ouster-ros [ouster.launch parameters ..]
#
CMD ["bash", "-c", "set -e \
&& . ./devel/setup.bash \
&& roslaunch ouster_ros ouster.launch \"$@\" \
", "ros-entrypoint"]