-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
pull latest master into art-oak (#88)
* fix (#76) * Update vehicle_computers.md (#78) #77 fix * 81/bug/rosdep-dockerfile-fix (#82) * Fix small bug in rosdep dockerfile related to hardcoded art_dev_meta line. * Fix #2 * Added recursive flag to clone in script * Many fixes for agx systems (#84) * Many fixes for agx systems * Small fixes --------- Co-authored-by: harryzhang1018 <[email protected]> Co-authored-by: Aaron Young <[email protected]>
- Loading branch information
1 parent
53ab694
commit 7d33467
Showing
9 changed files
with
46 additions
and
14 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
ROS_DISTRO=humble | ||
|
||
DEFAULT_APT_DEPENDENCIES=" bash vim git git-lfs python3-pip" | ||
DEFAULT_PIP_REQUIREMENTS=" setuptools=58.2.0 " | ||
DEFAULT_APT_DEPENDENCIES="bash vim git git-lfs python3-pip" | ||
DEFAULT_PIP_REQUIREMENTS="" |
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
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,9 @@ | ||
# syntax = devthefuture/dockerfile-x | ||
# SPDX-License-Identifier: MIT | ||
# This snippet helps with setup on agx specific systems | ||
|
||
# Add Isaac apt repositories | ||
# Without this, humble packages on focal (the default ubuntu version for AGX) can't be found | ||
RUN wget -qO - https://isaac.download.nvidia.com/isaac-ros/repos.key | apt-key add - && \ | ||
grep -qxF 'deb https://isaac.download.nvidia.com/isaac-ros/ubuntu/main focal main' /etc/apt/sources.list || \ | ||
echo 'deb https://isaac.download.nvidia.com/isaac-ros/ubuntu/main focal main' | tee -a /etc/apt/sources.list |
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
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
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