mirror of
https://github.com/openfaas/faas.git
synced 2025-06-09 00:36:46 +00:00
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>
9 lines
97 B
Makefile
9 lines
97 B
Makefile
.PHONY: all build push
|
|
TAG?=latest
|
|
|
|
all: build
|
|
build:
|
|
./build.sh ${TAG}
|
|
push:
|
|
./push.sh ${TAG}
|