Updates integrated!

This commit is contained in:
Philipp Horstenkamp 2022-06-30 15:08:31 +02:00
parent 51657fca79
commit b542a28c61
Signed by: Philipp
GPG Key ID: DD53EAC36AFB61B4
5 changed files with 633 additions and 781 deletions

File diff suppressed because one or more lines are too long

0
experiments/ExReadMe.md Normal file
View File

File diff suppressed because one or more lines are too long

2
pyrate

@ -1 +1 @@
Subproject commit 1415645163062bcdabd81226cb4a1281f9ca8735 Subproject commit d148e65134096d912b471c7c7f30710d613bb5c3

View File

@ -1,26 +0,0 @@
FROM ros:humble-ros-base-jammy
# Resolve APT dependencies
RUN apt-get update -qq
RUN apt-get install apt-utils software-properties-common -yqq
RUN add-apt-repository ppa:antiprism/ppa -y
RUN apt-get install apt-utils software-properties-common python3-pip g++ python3-dev python3-gdal libgdal-dev libsqlite3-mod-spatialite antiprism git libqt5gui5 libqt5core5a qtbase5-dev qtchooser qt5-qmake qtbase5-dev-tools libxtst6 libasound2 -yqq
# Clone and install Pyrate
COPY pyrate/ pyrate
RUN pip3 install ./pyrate
# Clone and install Model
COPY model/ model
RUN pip3 install ./model
# Clone ROS nodes and install requirements
COPY ros-nodes/ ros-nodes
WORKDIR ros-nodes
RUN pip3 install -r requirements.txt
RUN rosdep update -q
RUN rosdep install -q -y -i --from-path src --as-root pip:false
RUN pip install jupyter
SHELL ["/bin/bash", "-c", "source /opt/ros/humble/setup.bash && colcon build --symlink-install"]
RUN source install/setup.bash