8 lines
254 B
Bash
8 lines
254 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
rm ./dist
|
||
|
CGO_ENABLED=0 go build -a --installsuffix cgo --ldflags="-s" -o ./dist/probe_gateway_metric
|
||
|
|
||
|
docker build -t docker.loafle.net/overflow/probe_gateway_metric:1.0.0 .
|
||
|
|
||
|
docker push docker.loafle.net/overflow/probe_gateway_metric:1.0.0
|