From 503587c227b79ac72c0b9d8a0176ee1052d8f4a7 Mon Sep 17 00:00:00 2001 From: Niko Date: Mon, 25 Mar 2024 10:11:43 +0100 Subject: [PATCH] Fixed Docker Compose build error (cant find ros-humble-hardware-interface, ros-humble-controller-interface) --- Dockerfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index a0b2b4d..e7a82ec 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,7 +4,9 @@ FROM osrf/ros:humble-desktop-full-jammy # Update and install dependencies RUN apt-get update && apt-get install -y \ python3-colcon-common-extensions python3-pip \ - ros-humble-xacro + ros-humble-xacro \ + ros-humble-hardware-interface \ + ros-humble-controller-interface COPY requirements.txt ./ RUN pip install --no-cache-dir -r requirements.txt