mirror of
https://github.com/nshttpd/mikrotik-exporter.git
synced 2024-11-14 10:05:16 +01:00
15 lines
290 B
Bash
Executable File
15 lines
290 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
set -x
|
|
|
|
DIR=`pwd`
|
|
NAME=`basename ${DIR}`
|
|
SHA=`git rev-parse --short HEAD`
|
|
VERSION=${VERSION:-$SHA}
|
|
|
|
GOOS=linux GOARCH=arm go build .
|
|
|
|
docker build -t nshttpd/${NAME}:${VERSION}-armhf -f Dockerfile.armhf .
|
|
docker push nshttpd/${NAME}:${VERSION}-armhf
|
|
|
|
rm mikrotik-exporter |