mirror of
https://github.com/grafana/grafana.git
synced 2025-07-30 22:52:20 +08:00

* Build: Upgrade to go 1.12.9 * Build: Use default-mysql-client for debian buster The go base image has been updated to use Debian Buster instead of Stretch, which seems to have done away with mysql-client in favor of default-mysql-client. * Build: Update Dockerfile to use go 1.12.9 Fixes #18592
8 lines
116 B
Bash
Executable File
8 lines
116 B
Bash
Executable File
#!/bin/bash
|
|
|
|
_version="1.2.8"
|
|
_tag="grafana/build-container:${_version}"
|
|
|
|
docker build -t $_tag .
|
|
docker push $_tag
|