-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathDockerfile
More file actions
22 lines (20 loc) · 741 Bytes
/
Dockerfile
File metadata and controls
22 lines (20 loc) · 741 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
ARG ROS_DISTRO=jazzy
FROM ros:${ROS_DISTRO}
ARG ROS_DISTRO
RUN apt-get update && apt-get upgrade -y && apt-get install -y --no-install-recommends \
clang-format \
clang-tidy \
ros-${ROS_DISTRO}-ament-cmake-clang-format \
ros-${ROS_DISTRO}-ament-cmake-clang-tidy \
ros-${ROS_DISTRO}-ament-lint-auto \
ros-${ROS_DISTRO}-ament-lint-common \
ros-${ROS_DISTRO}-ament-cmake-gtest \
ros-${ROS_DISTRO}-ament-cmake-ros \
ros-${ROS_DISTRO}-std-msgs \
ros-${ROS_DISTRO}-std-srvs \
ros-${ROS_DISTRO}-example-interfaces \
ros-${ROS_DISTRO}-tf2-ros \
ros-${ROS_DISTRO}-ros2launch \
python3-pip \
&& rm -rf /var/lib/apt/lists/*
RUN pip install --break-system-packages --ignore-installed zensical