Files
Michael Crosby ddd19a61a8 add x86 kernel config (#765)
Add x86 kernel config and build scripts.

Signed-off-by: michael_crosby <michael_crosby@apple.com>
2026-06-16 12:47:20 -04:00

30 lines
656 B
Docker

FROM ubuntu:focal
RUN apt-get update && apt-get install -y \
autoconf \
bc \
binutils-multiarch \
binutils-aarch64-linux-gnu \
binutils-x86-64-linux-gnu \
bison \
flex \
gcc \
xz-utils \
gcc-aarch64-linux-gnu \
gcc-x86-64-linux-gnu \
git \
libncurses-dev \
make \
openssl \
python-is-python3 \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*
COPY sources.list /etc/apt/sources.list
RUN apt-get update \
&& dpkg --add-architecture arm64 \
&& dpkg --add-architecture amd64 \
&& apt-get install -y libelf-dev:arm64 libelf-dev:amd64 \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*