mirror of
https://github.com/grafana/grafana.git
synced 2025-02-10 15:45:43 -06:00
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
|