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
21 lines
472 B
Docker
21 lines
472 B
Docker
FROM ros:melodic-ros-base
|
|
|
|
ENV ROS_DISTRO=melodic
|
|
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-melodic-rosbridge-suite \
|
|
ros-melodic-turtlesim \
|
|
ros-melodic-turtle-actionlib \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
WORKDIR /ros_ws
|
|
|
|
COPY ros1_launch.launch /ros_ws/ros1_launch.launch
|
|
|
|
EXPOSE 9090
|
|
|
|
CMD ["roslaunch", "/ros_ws/ros1_launch.launch"]
|