Files
fn-serverless/fnctl/Makefile
C Cirello b8cc8ad1d5 Functions CLI (#191)
First iteration of CLI tool.
2016-10-24 09:21:07 -07:00

12 lines
162 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:
go get -u .