* DeployImage: Switch base images to Debian
Signed-off-by: Arve Knudsen <arve.knudsen@gmail.com>
(cherry picked from commit fdd6a84d82)
Co-authored-by: Arve Knudsen <arve.knudsen@gmail.com>
9 lines
135 B
Bash
Executable File
9 lines
135 B
Bash
Executable File
#!/bin/bash
|
|
set -eo pipefail
|
|
|
|
_version="1.3.0"
|
|
_tag="grafana/grafana-ci-deploy:${_version}"
|
|
|
|
docker build -t $_tag .
|
|
docker push $_tag
|