We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 64e6241 commit 64cec89Copy full SHA for 64cec89
Dockerfile
@@ -17,8 +17,9 @@ RUN wget https://apt.llvm.org/llvm-snapshot.gpg.key && \
17
rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
18
WORKDIR /usr/local/src
19
# Build libbpf and bpftool from the newest stable kernel sources.
20
+ENV KERNEL_TAG v5.13.1
21
RUN git clone --depth 1 -b \
- v$(curl -s https://www.kernel.org/ | grep -A1 'stable:' | grep -oP '(?<=strong>).*(?=</strong.*)') \
22
+ ${KERNEL_TAG} \
23
git://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git && \
24
cd linux && \
25
cd tools/lib/bpf && \
0 commit comments