From 50c183b45bd6044f1969159d4c5a2c9def0ad11b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=91=D1=8B=D1=87=D0=BA=D0=BE=D0=B2=20=D0=90=D0=BD=D0=B4?= =?UTF-8?q?=D1=80=D0=B5=D0=B9?= Date: Tue, 22 Apr 2025 11:29:40 +0300 Subject: [PATCH] fix picotool install --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 2e151fa..a5c2b09 100644 --- a/Dockerfile +++ b/Dockerfile @@ -29,6 +29,6 @@ RUN git clone --depth 1 --branch 2.1.1 --single-branch https://github.com/raspbe mkdir build && \ cd build && \ cmake .. && \ - make && \ - cp /home/picotool/build/picotool /bin/picotool && \ + make -j$(nproc) && \ + cmake --install . && \ rm -rf /home/picotool