mirror of
https://github.com/grafana/grafana.git
synced 2024-11-29 04:04:00 -06:00
d963c6d868
Signed-off-by: Arve Knudsen <arve.knudsen@gmail.com>
9 lines
135 B
Bash
Executable File
9 lines
135 B
Bash
Executable File
#!/bin/bash
|
|
set -eo pipefail
|
|
|
|
_version="1.3.1"
|
|
_tag="grafana/grafana-ci-deploy:${_version}"
|
|
|
|
docker build -t $_tag .
|
|
docker push $_tag
|