mirror of https://github.com/grafana/grafana.git
8 lines
116 B
Bash
8 lines
116 B
Bash
|
|
#!/bin/bash
|
||
|
|
|
||
|
|
_version="1.2.3"
|
||
|
|
_tag="grafana/build-container:${_version}"
|
||
|
|
|
||
|
|
docker build -t $_tag .
|
||
|
|
docker push $_tag
|