From 0c026b8e4760e2cf0094a78afe6af070a65974ce Mon Sep 17 00:00:00 2001 From: Justin Cormack Date: Tue, 12 Jan 2016 14:10:51 +0000 Subject: [PATCH] qemu build in Makefile Signed-off-by: Justin Cormack --- Makefile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Makefile b/Makefile index 27c1d2ddf..10f88537a 100644 --- a/Makefile +++ b/Makefile @@ -5,6 +5,11 @@ all: xhyve: all $(MAKE) -C xhyve run +qemu: all + docker build -t mobyqemu:build . + docker run -it mobyqemu:build + clean: $(MAKE) -C alpine clean $(MAKE) -C xhyve clean + docker images -q mobyqemu:build | xargs docker rmi