mirror of
https://github.com/fnproject/fn.git
synced 2022-10-28 21:29:17 +03:00
* See the hello/go README for how this all works now. * Node support for fnctl auto build * Updated based on PR comments.
14 lines
203 B
Makefile
14 lines
203 B
Makefile
all: vendor
|
|
go build -o fnctl
|
|
./fnctl
|
|
|
|
docker: vendor
|
|
GOOS=linux go build -o fnctl
|
|
docker build -t iron/fnctl .
|
|
docker push iron/fnctl
|
|
|
|
vendor:
|
|
glide install -v
|
|
|
|
test:
|
|
go test -v $(shell glide nv)
|