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