- Replace ARM tarball download with gcc-arm-none-eabi from apt - Drop TARGETARCH/GCC_VERSION build args — no longer needed - Pin nrfx submodule to v2.9.0 which still bundles mdk/ headers - nrfx 3+ dropped mdk/ from the repo
12 lines
276 B
Docker
12 lines
276 B
Docker
FROM debian:bookworm-slim
|
|
|
|
RUN apt-get update && apt-get install -y --no-install-recommends \
|
|
gcc-arm-none-eabi \
|
|
binutils-arm-none-eabi \
|
|
libnewlib-arm-none-eabi \
|
|
cmake \
|
|
ninja-build \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
WORKDIR /src
|