add linux-headers

This commit is contained in:
Lance R. Vick 2023-11-13 20:24:47 -08:00
parent 4e594f4ee3
commit 09df9d6868
No known key found for this signature in database
GPG key ID: 8E47A1EC35A1551D

View file

@ -0,0 +1,20 @@
FROM ocirep/musl:latest as musl
FROM ocirep/bootstrap:latest as build
ENV SRC_SITE https://mirrors.edge.kernel.org/pub/linux/kernel/v6.x/
ENV SRC_VERSION 6.6
ENV SRC_HASH d926a06c63dd8ac7df3f86ee1ffc2ce2a3b81a2d168484e76b5b389aba8e56d0
RUN wget ${SRC_SITE}/linux-${SRC_VERSION}.tar.xz
RUN echo "${SRC_HASH} linux-${SRC_VERSION}.tar.xz" | sha256sum -c
RUN tar -xf linux-${SRC_VERSION}.tar.xz
WORKDIR linux-${SRC_VERSION}
RUN set -ex; \
make headers; \
mkdir -p /rootfs/usr; \
cp -a usr/include /rootfs/usr/; \
find /rootfs/usr/include/ ! -iname "*.h" -type f -exec rm -v {} \+; \
rm -rf /rootfs/usr/include/drm;
FROM scratch
COPY --from=build /rootfs /