mirror of
https://github.com/grafana/grafana.git
synced 2025-07-28 18:22:32 +08:00

* Update scripts and Dockerfiles to use Go 1.16.1 * Update build-container image version to 1.4.1 * Update node version to 14.16.0-1nodesource1 * Updated drone configuration
12 lines
185 B
Bash
Executable File
12 lines
185 B
Bash
Executable File
#!/bin/bash
|
|
set -eo pipefail
|
|
|
|
_version="1.4.1"
|
|
_tag="grafana/build-container:${_version}"
|
|
|
|
_dpath=$(dirname "${BASH_SOURCE[0]}")
|
|
cd "$_dpath"
|
|
|
|
docker build -t $_tag .
|
|
docker push $_tag
|