db1d565b64
Integration Tests / melodic (push) Has been cancelled
Integration Tests / noetic (push) Has been cancelled
Integration Tests / humble (push) Has been cancelled
Integration Tests / jazzy (push) Has been cancelled
Ruff Lint & Format / ruff (push) Has been cancelled
Sync main to develop / Check if sync is needed (push) Has been cancelled
Sync main to develop / Sync main to develop (push) Has been cancelled
22 lines
493 B
Docker
22 lines
493 B
Docker
FROM ros:humble-ros-base
|
|
|
|
ENV ROS_DISTRO=humble
|
|
ENV DEBIAN_FRONTEND=noninteractive
|
|
ENV QT_QPA_PLATFORM=offscreen
|
|
SHELL ["/bin/bash", "-c"]
|
|
|
|
RUN apt-get update && apt-get install -y --no-install-recommends \
|
|
ros-humble-rosbridge-suite \
|
|
ros-humble-turtlesim \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
WORKDIR /ros2_ws
|
|
|
|
COPY ros2_launch.py /ros2_ws/ros2_launch.py
|
|
COPY entrypoint-ros2.sh /ros2_ws/entrypoint.sh
|
|
RUN chmod +x /ros2_ws/entrypoint.sh
|
|
|
|
EXPOSE 9090
|
|
|
|
CMD ["/ros2_ws/entrypoint.sh"]
|