mirror of
https://github.com/linuxkit/linuxkit.git
synced 2026-01-14 20:08:14 +00:00
- remove patch now https://github.com/iovisor/bcc/pull/887 is merged - move the patches to the base image as it makes more sense like this Signed-off-by: Justin Cormack <justin.cormack@docker.com>
13 lines
302 B
Makefile
13 lines
302 B
Makefile
KERNEL_FILES=-C ../../kernel/x86_64 kernel-headers.tar kernel-dev.tar kernel-modules.tar
|
|
|
|
default: ebpf.tag
|
|
|
|
ebpf.tag: Dockerfile
|
|
BUILD=$$( tar cf - $^ $(KERNEL_FILES) | docker build -q - ) && [ -n "$$BUILD" ] && echo "Built $$BUILD" && \
|
|
echo $$BUILD > $@
|
|
|
|
clean:
|
|
rm -f ebpf.tag
|
|
|
|
.DELETE_ON_ERROR:
|