mirror of
https://github.com/grafana/grafana.git
synced 2025-08-01 09:03:11 +08:00
8 lines
116 B
Bash
Executable File
8 lines
116 B
Bash
Executable File
#!/bin/bash
|
|
|
|
_version="1.2.7"
|
|
_tag="grafana/build-container:${_version}"
|
|
|
|
docker build -t $_tag .
|
|
docker push $_tag
|