Files
grafana/scripts/build/ci-build/build-deploy.sh
T
Arve Knudsen cafb3a14ef CircleCI: Upgrade to Go 1.14.3 and Node 12.17.0 (#25215)
Signed-off-by: Arve Knudsen <arve.knudsen@gmail.com>
(cherry picked from commit 01ecbae2ee)
2020-06-03 17:19:31 +02:00

12 lines
186 B
Bash
Executable File

#!/bin/bash
set -eo pipefail
_version="1.2.19"
_tag="grafana/build-container:${_version}"
_dpath=$(dirname "${BASH_SOURCE[0]}")
cd "$_dpath"
docker build -t $_tag .
docker push $_tag