forked from ros-planning/navigation_experimental
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile-noetic
31 lines (22 loc) · 1.11 KB
/
Dockerfile-noetic
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
FROM ros:noetic-ros-core
RUN apt-get update \
&& apt-get install -y build-essential python3-rosdep git \
&& rm -rf /var/lib/apt/lists/{apt,dpkg,cache,log} /tmp/* /var/tmp/*
# workaround for https://github.com/catkin/catkin_tools/issues/594:
# apt-get install python3-catkin-tools doesn't work because python3-trollius doesn't exist on Ubuntu Focal
ENV PATH="/root/.local/bin:${PATH}"
RUN apt-get update \
&& apt-get install -y git python3-pip \
&& rm -rf /var/lib/apt/lists/{apt,dpkg,cache,log} /tmp/* /var/tmp/*
RUN pip3 install --user git+https://github.com/catkin/catkin_tools.git
# end workaround
# Create ROS workspace
COPY . /ws/src/navigation_experimental
WORKDIR /ws
# Use rosdep to install all dependencies (including ROS itself)
RUN rosdep init && rosdep update && DEBIAN_FRONTEND=noninteractive rosdep install --from-paths src -i -y --rosdistro noetic
RUN /bin/bash -c "source /opt/ros/noetic/setup.bash && \
catkin init && \
catkin config --install -j 1 -p 1 && \
catkin build --limit-status-rate 0.1 --no-notify && \
catkin build --limit-status-rate 0.1 --no-notify --make-args tests"