Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
R
ROS-Kubernetes
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Larkin Heintzman
ROS-Kubernetes
Commits
df64b67b
Commit
df64b67b
authored
Jun 13, 2022
by
Larkin Heintzman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
yolo ros update
parent
a541379b
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
15 additions
and
1 deletion
+15
-1
Dockerfile
docker/yolo/Dockerfile
+9
-1
ros_entrypoint.sh
docker/yolo/ros_entrypoint.sh
+6
-0
No files found.
docker/yolo/Dockerfile
View file @
df64b67b
FROM
nvcr.io/nvidia/l4t-base:r32.4.3
# opencv install
ENV
DEBIAN_FRONTEND="noninteractive"
# ros install, since we need to start with nvcr
RUN
echo
"deb http://packages.ros.org/ros/ubuntu focal main"
>
/etc/apt/sources.list.d/ros-latest.list
RUN
apt update
&&
apt
install
curl
RUN
curl
-s
https://raw.githubusercontent.com/ros/rosdistro/master/ros.asc | apt-key add -
RUN
apt update
&&
apt
install
ros-noetic-ros-base
COPY
ros_entrypoint.sh ros_entrypoint.sh
# opencv install
RUN
apt-get update
&&
\
apt-get
install
-y
opencv-data libopencv-dev
...
...
docker/yolo/ros_entrypoint.sh
0 → 100755
View file @
df64b67b
#!/bin/bash
#set -e
# setup ros environment
source
"/opt/ros/
$ROS_DISTRO
/setup.bash"
exec
"
$@
"
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment