BPA-RESTful_API uninstall script
[icn.git] / cmd / bpa-restapi-agent / Makefile
1 .PHONY: build
2
3 build:
4         go build -o build/_output/bin/bpa-restapi-agent main.go
5
6 docker: 
7         docker build -t akraino.org/icn/bpa-restapi-agent:latest . -f build/Dockerfile  
8
9 deploy: docker
10         ./bpa_api_install.sh
11
12 unit_test: go_install
13         go test ./internal/app
14
15 go_install:
16         ./install_go.sh
17
18 e2e_test: deploy
19         ./e2e_test.sh
20
21 clean:
22         ./bpa_api_uninstall.sh