From 5f0ad4e69ed8a607c00593ba9647ba3d81ca01e8 Mon Sep 17 00:00:00 2001 From: lukstep Date: Sun, 5 Jul 2026 19:38:27 +0200 Subject: [PATCH 1/2] Update base container image to Ubuntu 26.04 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 2e6dec6..a91fea3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM ubuntu:24.04 +FROM ubuntu:26.04 RUN apt-get update -y && \ apt-get upgrade -y && \ From 406cc07f067d2f08a506eec27fa68c68def1db18 Mon Sep 17 00:00:00 2001 From: lukstep Date: Sun, 5 Jul 2026 19:39:04 +0200 Subject: [PATCH 2/2] Update RP pico SDK to 2.3.0 --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index a91fea3..9260ca8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -43,7 +43,7 @@ RUN TOOLCHAIN=/opt/xpack-riscv-none-elf-gcc-${RISCV_VERSION}/bin && \ # Raspberry Pi Pico SDK ARG SDK_PATH=/usr/local/picosdk -RUN git clone --depth 1 --branch 2.1.1 https://github.com/raspberrypi/pico-sdk $SDK_PATH && \ +RUN git clone --depth 1 --branch 2.3.0 https://github.com/raspberrypi/pico-sdk $SDK_PATH && \ cd $SDK_PATH && \ git submodule update --init @@ -58,7 +58,7 @@ RUN git clone --depth 1 --branch V11.2.0 https://github.com/FreeRTOS/FreeRTOS-Ke ENV FREERTOS_KERNEL_PATH=$FREERTOS_PATH # Picotool installation -RUN git clone --depth 1 --branch 2.1.1 https://github.com/raspberrypi/picotool.git /home/picotool && \ +RUN git clone --depth 1 --branch 2.3.0 https://github.com/raspberrypi/picotool.git /home/picotool && \ cd /home/picotool && \ mkdir build && \ cd build && \