mirror of
https://github.com/kubenetworks/kubevpn.git
synced 2025-12-24 11:51:13 +08:00
9 lines
186 B
Makefile
9 lines
186 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 .
|
|
docker push naison/kubevpn:latest
|