6 lines
120 B
Bash
Executable File
6 lines
120 B
Bash
Executable File
#!/bin/sh
|
|
set -e
|
|
cd "$(dirname "$0")"
|
|
CGO_ENABLED=0 GOOS=linux ../go.sh build -v -i .
|
|
docker build -t tris-testclient .
|