mirror of
https://github.com/grafana/grafana.git
synced 2025-02-20 11:48:34 -06:00
* Move dockerize to build-container * Sync drone * Fix command to not point in bin dir * Update build container version
12 lines
185 B
Bash
Executable File
12 lines
185 B
Bash
Executable File
#!/bin/bash
|
|
set -eo pipefail
|
|
|
|
_version="1.4.3"
|
|
_tag="grafana/build-container:${_version}"
|
|
|
|
_dpath=$(dirname "${BASH_SOURCE[0]}")
|
|
cd "$_dpath"
|
|
|
|
docker build -t $_tag .
|
|
docker push $_tag
|