Remove Submodule & Fix Dockerfile

- Remove gazebo source submodule
- Fix dockerfile to use sudo to install ariac3 package
- Remove instructions related to submodule
- Remove sourcing setup.bash in workspace from instructions
This commit is contained in:
Sravan Balaji
2020-04-12 14:45:24 -04:00
parent 705f7ac662
commit 75f0d553fe
4 changed files with 9 additions and 20 deletions

View File

@@ -36,14 +36,15 @@ RUN echo "export GAZEBO_PLUGIN_PATH=/home/rrrobot/rrrobot_src/lib:\$GAZEBO_PLUGI
USER rrrobot
# Install Gazebo Environment for Agile Robotics (GEAR)
RUN sudo apt-get update && \
sudo apt-get install -y \
wget
RUN sudo sh -c 'echo "deb http://packages.osrfoundation.org/gazebo/ubuntu-stable bionic main" > /etc/apt/sources.list.d/gazebo-stable.list' && \
wget http://packages.osrfoundation.org/gazebo.key -O - | sudo apt-key add - && \
apt-get update && \
apt-get install -y \
sudo apt-get update && \
sudo apt-get install -y \
ariac3
CMD ["/bin/bash"]