mirror of
https://github.com/linuxkit/linuxkit.git
synced 2026-05-04 04:52:59 +00:00
9 lines
194 B
Makefile
9 lines
194 B
Makefile
DEPS=Dockerfile $(wildcard *.c *.h)
|
|
|
|
tap-vsockd: $(DEPS)
|
|
tar cf - $(DEPS) | docker build -t tap-vsockd:build -
|
|
docker run --rm --net=none tap-vsockd:build | tar xf -
|
|
|
|
clean:
|
|
rm -f tap-vsockd
|