mirror of
https://github.com/grafana/grafana.git
synced 2025-09-25 17:04:10 +08:00

* Update to golang 1.17 * Further updates * Run go mod tidy on go 1.17 * Apply suggestions from code review Co-authored-by: Marcus Efraimsson <marcus.efraimsson@gmail.com> * Use build-container:1.4.2 Co-authored-by: Marcus Efraimsson <marcus.efraimsson@gmail.com>
12 lines
185 B
Bash
Executable File
12 lines
185 B
Bash
Executable File
#!/bin/bash
|
|
set -eo pipefail
|
|
|
|
_version="1.4.2"
|
|
_tag="grafana/build-container:${_version}"
|
|
|
|
_dpath=$(dirname "${BASH_SOURCE[0]}")
|
|
cd "$_dpath"
|
|
|
|
docker build -t $_tag .
|
|
docker push $_tag
|