mirror of
https://github.com/EECS-467-W20-RRRobot-Project/RRRobot.git
synced 2025-08-19 23:32:44 +00:00
11 lines
225 B
Docker
11 lines
225 B
Docker
# ROS Turtlesim Dockerfile
|
|
|
|
# Use official image for ROS Melodic Morenia
|
|
FROM ros:melodic
|
|
|
|
# Install turtlesim dependencies
|
|
RUN sudo apt-get update && apt-get install -y \
|
|
ros-melodic-ros-tutorials
|
|
|
|
CMD ["/bin/bash"]
|