Rename Dockerfile.arm to Dockerfile.armhf to more clearly reflect the specific subversion of ARM it targets

Also, fix up some minor whitespace consistency issues, remove a little cruft, and update GOARM for armhf to 7 so that we're explicit.

Signed-off-by: Andrew "Tianon" Page <admwiggin@gmail.com>
This commit is contained in:
Tianon Gravi
2015-12-30 00:50:10 -08:00
parent 135180bc4c
commit dc38061bee
3 changed files with 22 additions and 23 deletions

View File

@@ -6,7 +6,7 @@ DOCKER_ENGINE_OSARCH = $(shell docker version | grep 'OS/Arch' | tail -1 | cut -
DOCKER_FILE = Dockerfile
# switch to different Dockerfile for linux/arm
ifeq ($(DOCKER_ENGINE_OSARCH),linux/arm)
DOCKER_FILE = Dockerfile.arm
DOCKER_FILE = Dockerfile.armhf
endif
export DOCKER_FILE