mirror of
https://github.com/grafana/grafana.git
synced 2025-02-15 10:03:33 -06:00
* DevEnv: updates nodejs to 12.x and golang to 1.13 * Updates CI-build and CI-deploy image versions * DevEnv: updates update repo readme * DevEnv: updates build container version
12 lines
186 B
Bash
Executable File
12 lines
186 B
Bash
Executable File
#!/bin/bash
|
|
set -eo pipefail
|
|
|
|
_version="1.2.13"
|
|
_tag="grafana/build-container:${_version}"
|
|
|
|
_dpath=$(dirname "${BASH_SOURCE[0]}")
|
|
cd "$_dpath"
|
|
|
|
docker build -t $_tag .
|
|
docker push $_tag
|