Files
kubevpn/Makefile
wencaiwulue c957745cf7 add Makefile
2021-09-05 10:22:15 +08:00

7 lines
153 B
Makefile

.PHONY: vpn
vpn:
go build -o vpn ./pkg && chmod +x vpn
.PHONY: build_image
build_image:
docker build -t naison/kubevpn:latest -f ./remote/Dockerfile .