Files
fn-serverless/fnlb/Makefile
James Jeffrey c7f3066c75 Update references remove refs to treeder oracle funcy (#376)
* Remove lots of refs to iron and funcy oracle etc..

* more ref replacements

* Replacing more refs. Treeder

* Use Fn not FN
2017-09-29 16:22:15 -07:00

14 lines
346 B
Makefile

# Just builds
.PHONY: all build
build:
go build
docker-build:
docker pull fnproject/go:dev
docker run --rm -v ${GOPATH}/src/github.com/fnproject/fn:/go/src/github.com/fnproject/fn \
-w /go/src/github.com/fnproject/fn/fnlb fnproject/go:dev go build -o fnlb-alpine
docker build --build-arg HTTP_PROXY -t fnproject/fnlb:latest .
all: build