Files
linuxkit/alpine/packages/nc-vsock/Makefile
Justin Cormack 82d1126a82 clean up nc-vsock build
Signed-off-by: Justin Cormack <justin@specialbusservice.com>
2016-09-12 16:00:53 +01:00

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