mirror of
https://github.com/rancher/os-kernel.git
synced 2025-04-28 02:30:07 +00:00
11 lines
202 B
Docker
11 lines
202 B
Docker
FROM alpine:3.4
|
|
# FROM arm64=skip arm=skip
|
|
RUN apk --purge --no-cache add kmod bash
|
|
|
|
ARG KERNEL_VERSION
|
|
ENV KERNEL_VERSION=${KERNEL_VERSION}
|
|
|
|
COPY headers.sh /
|
|
COPY /build.tar.gz /
|
|
CMD ["/headers.sh"]
|