Skip to content

Commit a320c7f

Browse files
committed
docker: Install argp.h
The 5.10 build fails with: CC [U] kernel/bpf/preload/iterators/iterators.o kernel/bpf/preload/iterators/iterators.c:3:10: fatal error: argp.h: No such file or directory 3 | #include <argp.h> | ^~~~~~~~ compilation terminated. Fix by installing the required header.
1 parent 1e263b7 commit a320c7f

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

docker/Dockerfile.kernel

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ ARG ALPINE_VERSION
22
FROM alpine:${ALPINE_VERSION}
33

44
RUN apk update && apk add \
5+
argp-standalone \
56
bash \
67
bison \
78
build-base \

0 commit comments

Comments
 (0)