mirror of
https://github.com/linuxkit/linuxkit.git
synced 2026-01-05 13:19:49 +00:00
10 lines
221 B
Makefile
10 lines
221 B
Makefile
DEPS=Dockerfile $(wildcard *.c *.h)
|
|
|
|
9pmount-vsock: $(DEPS)
|
|
mkdir -p sbin
|
|
tar cf - $(DEPS) | docker build -t 9pmount-vsock:build -
|
|
docker run --rm --net=none 9pmount-vsock:build | tar xf - -C sbin
|
|
|
|
clean:
|
|
rm -rf sbin
|