We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 11fbdc0 commit ff037fcCopy full SHA for ff037fc
pico-sdk/Dockerfile
@@ -1,4 +1,4 @@
1
-FROM alpine:3.17
+FROM alpine:3.21
2
3
# Install toolchain
4
RUN apk update && \
@@ -11,13 +11,14 @@ RUN apk update && \
11
libusb-dev \
12
bsd-compat-headers \
13
newlib-arm-none-eabi \
14
- gcc-arm-none-eabi
+ gcc-arm-none-eabi \
15
+ g++-arm-none-eabi
16
RUN adduser -D wokwi
17
18
USER wokwi
19
WORKDIR /home/wokwi
20
ENV PICO_SDK_PATH=/home/wokwi/pico-sdk
-RUN git clone -b 1.4.0 --depth 1 https://github.com/raspberrypi/pico-sdk.git && cd pico-sdk && git submodule update --init --depth 1
21
+RUN git clone -b 2.1.1 --depth 1 https://github.com/raspberrypi/pico-sdk.git && cd pico-sdk && git submodule update --init --depth 1
22
23
COPY --chown=wokwi:wokwi project project/
24
0 commit comments