mirror of
https://github.com/fnproject/fn.git
synced 2022-10-28 21:29:17 +03:00
14 lines
346 B
Makefile
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
|