We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8efe276 commit 797d972Copy full SHA for 797d972
1 file changed
Dockerfile
@@ -14,12 +14,12 @@ RUN apt-get update \
14
libssl-dev \
15
libelf-dev \
16
&& rm -rf /var/lib/apt/lists/*
17
-RUN wget https://cdn.kernel.org/pub/linux/kernel/v5.x/linux-5.6.tar.xz
18
-RUN tar xf linux-5.6.tar.xz
+RUN wget https://cdn.kernel.org/pub/linux/kernel/v5.x/linux-5.10.tar.xz
+RUN tar xf linux-5.10.tar.xz
19
## For it to build on too new binutils
20
COPY fix-build.patch .
21
-COPY kernel-config.txt linux-5.6/.config
22
-RUN cd linux-5.6 && patch -p1 < ../fix-build.patch && make -j8 vmlinux
+COPY kernel-config.txt linux-5.10/.config
+RUN cd linux-5.10 && patch -p1 < ../fix-build.patch && make -j8 vmlinux
23
24
FROM scratch
25
-COPY --from=builder /build/linux-5.6/vmlinux /vmlinux
+COPY --from=builder /build/linux-5.10/vmlinux /vmlinux
0 commit comments