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