mirror of
https://github.com/rancher/os-kernel.git
synced 2025-09-24 19:49:45 +00:00
11 lines
216 B
Docker
11 lines
216 B
Docker
FROM alpine:3.8
|
|
# FROM arm64=arm64v8/alpine:3.8 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"]
|