FROM debian:bookworm RUN apt-get update && apt-get install -y \ # Core build tools build-essential \ bc \ kmod \ cpio \ # Kernel config/menuconfig flex \ bison \ libncurses-dev \ # Module signing and crypto libssl-dev \ # BTF/debug info libelf-dev \ dwarves \ # Device tree (needed by some configs) device-tree-compiler \ # Documentation and misc python3 \ # Fetching sources wget \ curl \ git \ # Compression formats used by initramfs/modules xz-utils \ zstd \ lz4 \ && rm -rf /var/lib/apt/lists/*