mirror of
https://github.com/EECS-467-W20-RRRobot-Project/RRRobot.git
synced 2025-08-13 13:38:33 +00:00
11 lines
211 B
Docker
11 lines
211 B
Docker
# ROS Dockerfile
|
|
|
|
# Use official image for ROS Melodic Morenia
|
|
FROM ros:melodic
|
|
|
|
# Install dependencies for development
|
|
RUN sudo apt-get update && apt-get install -y \
|
|
build-essential
|
|
|
|
CMD ["/bin/bash"]
|