From 0dbb3c52e1ab140e2b45c35e38d2296d415d10f6 Mon Sep 17 00:00:00 2001 From: Justin Cormack Date: Tue, 19 Jan 2016 12:11:26 +0000 Subject: [PATCH] rename top level Dockerfiles Signed-off-by: Justin Cormack --- Dockerfile => Dockerfile.qemu | 0 Dockerfile.armhf => Dockerfile.qemu.armhf | 0 Makefile | 4 ++-- 3 files changed, 2 insertions(+), 2 deletions(-) rename Dockerfile => Dockerfile.qemu (100%) rename Dockerfile.armhf => Dockerfile.qemu.armhf (100%) diff --git a/Dockerfile b/Dockerfile.qemu similarity index 100% rename from Dockerfile rename to Dockerfile.qemu diff --git a/Dockerfile.armhf b/Dockerfile.qemu.armhf similarity index 100% rename from Dockerfile.armhf rename to Dockerfile.qemu.armhf diff --git a/Makefile b/Makefile index e49fc2893..deee73c2a 100644 --- a/Makefile +++ b/Makefile @@ -6,7 +6,7 @@ xhyve: all $(MAKE) -C xhyve run qemu: all - docker build -t mobyqemu:build . + docker build -f Dockerfile.qemu -t mobyqemu:build . docker run -it mobyqemu:build arm: @@ -14,7 +14,7 @@ arm: $(MAKE) -C alpine arm qemu-arm: Dockerfile.armhf arm - docker build -f Dockerfile.armhf -t mobyarmqemu:build . + docker build -f Dockerfile.qemu.armhf -t mobyarmqemu:build . docker run -it mobyarmqemu:build clean: