This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
# Используем базовый образ ROS Noetic с поддержкой Perception
FROM ros:noetic-perception
# Установка необходимых системных пакетов
RUN apt-get update && apt-get install -y \
python3-pip \
ros-noetic-xacro \
ros-noetic-joy \
build-essential \
curl \
unzip \
cmake \
libglib2.0-dev \
&& rm -rf /var/lib/apt/lists/*
# Установка необходимых Python-библиотек
RUN pip3 install \
numpy==1.24.4 \
control==0.9.4 \
pyrr==0.10.3 \
pybullet==3.2.5 \
pyserial==3.5 \
pyqtgraph==0.13.3 \
gymnasium \
pcl==0.0.0.post1 \
pyquaternion==0.9.9 \
evdev \
pyudev \
Sphinx==7.1.2 \
myst-parser==2.0.0 \
sphinx-rtd-theme==1.3.0 \
lcm==1.4.4
# Скачивание и установка LCM
RUN curl -L -O https://github.com/lcm-proj/lcm/archive/refs/tags/v1.5.0.zip \