From 447ab872f57f0b266b10d5bac348ec5fd99a2948 Mon Sep 17 00:00:00 2001 From: David Montero Date: Wed, 1 Apr 2026 07:28:01 +0200 Subject: [PATCH] fix: add cmake, ninja-build and libusb to runtime image - cmake and ninja are required by ESP-IDF compilation pipeline but were missing from the final stage, causing all ESP32 compilations to fail - libusb-1.0-0 fixes the openocd-esp32 shared library warning on startup Co-Authored-By: Claude Sonnet 4.6 --- Dockerfile.standalone | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Dockerfile.standalone b/Dockerfile.standalone index bf1d508..0a49805 100644 --- a/Dockerfile.standalone +++ b/Dockerfile.standalone @@ -93,6 +93,9 @@ RUN apt-get update && apt-get install -y --no-install-recommends \ libslirp0 \ libpixman-1-0 \ libfdt1 \ + cmake \ + ninja-build \ + libusb-1.0-0 \ && apt-get clean \ && rm -rf /var/lib/apt/lists/*