-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
upgrade to humble for docker container
- Loading branch information
1 parent
8450971
commit 6769b56
Showing
5 changed files
with
36 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,6 +3,7 @@ bin/ | |
build/ | ||
install/ | ||
log/ | ||
ros_dependencies/ | ||
msg_gen/ | ||
srv_gen/ | ||
msg/*Action.msg | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# Start with the desktop ROS Humble 20.04 image | ||
FROM dustynv/ros:humble-desktop-l4t-r35.1.0 | ||
# FROM dustynv/ros:galactic-desktop-l4t-r35.1.0 | ||
|
||
# This dockerfile assumes you'll share your development folder from your computer over to the container, | ||
# so we don't do `rosdep install` for you, or clone the repository. | ||
|
||
# update everything | ||
RUN sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 42D5A192B819C5DA | ||
RUN sudo apt purge '*opencv*' | ||
RUN sudo apt install libopencv-dev | ||
RUN sudo apt-get update -y && sudo apt-get install -y | ||
# # Ensure rosinstall and rosdep are installed and up to date | ||
RUN sudo apt-get install -y python3-rosdep | ||
|
||
|
||
# build via docker build -f .\Dockerfile.dev -t uwrt_dev_image . | ||
# run via docker run --name uwrt_dev_container -e DISPLAY=host.docker.internal:0.0 -it -v uwrt_dev_image | ||
RUN rosdep install --from-paths . -y -r --ignore-src | ||
|
||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters