8 lines
268 B
Bash
8 lines
268 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
rm ./dist/*
|
||
|
CGO_ENABLED=1 go build -a --installsuffix cgo --ldflags="-s" -o ./dist/container_discovery
|
||
|
|
||
|
# cp ./dist/overflow_probe_container_discovery /project/overFlow/probe/bin/
|
||
|
# chmod u+s /project/overFlow/probe/bin/overflow_probe_container_discovery
|