faas/gateway/Makefile
Alex Ellis d3b3130586 Collapse Dockerfile.armhf into Dockerfile
This change which has been tested on armhf and x86_64 removes
the need for a separate Dockerfile for armhf.

CGO_ENABLED and GOARM etc are now passed as ARGs via build.sh.

Signed-off-by: Alex Ellis <alexellis2@gmail.com>
2019-07-20 10:43:35 +01:00

9 lines
97 B
Makefile

.PHONY: all build push
TAG?=latest
all: build
build:
./build.sh ${TAG}
push:
./push.sh ${TAG}