mirror of
https://github.com/fnproject/fn.git
synced 2022-10-28 21:29:17 +03:00
14 lines
370 B
Makefile
14 lines
370 B
Makefile
# Just builds
|
|
.PHONY: all build
|
|
|
|
build:
|
|
go build
|
|
|
|
docker-build:
|
|
docker pull funcy/go:dev
|
|
docker run --rm -v ${GOPATH}/src/gitlab-odx.oracle.com/odx/functions:/go/src/gitlab-odx.oracle.com/odx/functions \
|
|
-w /go/src/gitlab-odx.oracle.com/odx/functions/fnlb funcy/go:dev go build -o fnlb-alpine
|
|
docker build --build-arg HTTP_PROXY -t funcy/fnlb:latest .
|
|
|
|
all: build
|