From f2c73803d1b7cc08b27cf1fc4056b5f2dceb940a Mon Sep 17 00:00:00 2001 From: JoonCheol Park Date: Tue, 27 Jan 2026 19:48:24 +0000 Subject: [PATCH] switching base image for devkit container to ros:humble ros:humble supports both of amd64 and arm64 this base image change allows to use autodrive devkit container on aarch64 (arm64) machine --- autodrive_devkit.Dockerfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/autodrive_devkit.Dockerfile b/autodrive_devkit.Dockerfile index 12aeba6..0ce3142 100644 --- a/autodrive_devkit.Dockerfile +++ b/autodrive_devkit.Dockerfile @@ -5,7 +5,7 @@ #################################################### # Set base image -FROM osrf/ros:humble-desktop +FROM ros:humble # Install Debian packages RUN apt update \ @@ -19,6 +19,8 @@ RUN apt update \ unzip \ net-tools \ python3-pip \ + ros-humble-rviz2 \ + ros-humble-cv-bridge \ && rm -rf /var/lib/apt/lists/* # Install Python dependencies