mirror of
https://github.com/EECS-467-W20-RRRobot-Project/RRRobot.git
synced 2025-08-13 21:48:32 +00:00
Splits project into a docker environment folder and source code folder (for development). This change is mostly just renaming and moving files, but there are some changes to the gazebo Dockerfile to include all dependencies required for final development.
This commit is contained in:
16
docker_env/ros-dev/Dockerfile
Normal file
16
docker_env/ros-dev/Dockerfile
Normal file
@@ -0,0 +1,16 @@
|
||||
# ROS Development Dockerfile
|
||||
|
||||
# Use official image for ROS Melodic Morenia
|
||||
FROM ros:melodic
|
||||
|
||||
# Install dependencies for development
|
||||
RUN sudo apt-get update && apt-get install -y \
|
||||
# ROS Tutorial Dependencies
|
||||
ros-melodic-ros-tutorials \
|
||||
ros-melodic-rqt \
|
||||
ros-melodic-rqt-common-plugins \
|
||||
ros-melodic-turtlesim \
|
||||
# C++ Development: g++ compiler, etc.
|
||||
build-essential
|
||||
|
||||
CMD ["/bin/bash"]
|
1
docker_env/ros-dev/build.sh
Executable file
1
docker_env/ros-dev/build.sh
Executable file
@@ -0,0 +1 @@
|
||||
docker image build . --rm -t eecs467:rrrobot
|
1
docker_env/ros-dev/run_rrrobot_image.sh
Executable file
1
docker_env/ros-dev/run_rrrobot_image.sh
Executable file
@@ -0,0 +1 @@
|
||||
../run_rrrobot_image.sh
|
Reference in New Issue
Block a user