ROS Dockerfile Install Dependencies

- Use ros:melodic instead of ros:melodic-ros-core
- update packages and install build-essential for ROS container
This commit is contained in:
Sravan Balaji
2020-03-22 21:16:59 -04:00
parent b7c50253db
commit 1d5406423d

View File

@@ -1,6 +1,10 @@
# ROS Dockerfile
# Use official image for ROS Melodic Morenia
FROM ros:melodic-ros-core
FROM ros:melodic
# Install dependencies for development
RUN sudo apt-get update && apt-get install -y \
build-essential
CMD ["/bin/bash"]