4 Commits

Author SHA1 Message Date
50c183b45b fix picotool install
All checks were successful
SHS Gitea/raspberry-pi-pico-docker-sdk/pipeline/head This commit looks good
2025-04-22 11:29:40 +03:00
8a5859f324 add g++
All checks were successful
SHS Gitea/raspberry-pi-pico-docker-sdk/pipeline/head This commit looks good
2025-04-22 11:19:08 +03:00
b0b3ad9c9f Update alpine version
All checks were successful
SHS Gitea/raspberry-pi-pico-docker-sdk/pipeline/head This commit looks good
2025-04-22 10:59:53 +03:00
5f5b0d262b Merge pull request 'Update pico sdk to 2.1.1' (#1) from main into release
Some checks failed
SHS Gitea/raspberry-pi-pico-docker-sdk/pipeline/head There was a failure building this commit
Reviewed-on: #1
2025-04-22 10:49:32 +03:00

View File

@@ -1,4 +1,4 @@
FROM alpine:3.17.0
FROM alpine:3.21.3
# Install toolchain
RUN apk update && \
@@ -11,7 +11,9 @@ RUN apk update && \
libusb-dev \
bsd-compat-headers \
newlib-arm-none-eabi \
gcc-arm-none-eabi
gcc-arm-none-eabi \
g++-arm-none-eabi \
linux-headers
# Raspberry Pi Pico SDK
ARG SDK_PATH=/usr/share/pico_sdk
@@ -27,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