Commit df64b67b authored by Larkin Heintzman's avatar Larkin Heintzman

yolo ros update

parent a541379b
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
......
#!/bin/bash
#set -e
# setup ros environment
source "/opt/ros/$ROS_DISTRO/setup.bash"
exec "$@"
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment