mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
* grafana-build-container: Update armv7 musl compiler Signed-off-by: Arve Knudsen <arve.knudsen@gmail.com> * grafana-build-container: Bump version Signed-off-by: Arve Knudsen <arve.knudsen@gmail.com> * CircleCI: Use newer grafana/build-container image Signed-off-by: Arve Knudsen <arve.knudsen@gmail.com>
12 lines
186 B
Bash
Executable File
12 lines
186 B
Bash
Executable File
#!/bin/bash
|
|
set -eo pipefail
|
|
|
|
_version="1.2.15"
|
|
_tag="grafana/build-container:${_version}"
|
|
|
|
_dpath=$(dirname "${BASH_SOURCE[0]}")
|
|
cd "$_dpath"
|
|
|
|
docker build -t $_tag .
|
|
docker push $_tag
|