Remove build-deploy.sh (#41586)

This commit is contained in:
Dimitris Sotirakis
2021-11-11 09:23:12 +01:00
committed by GitHub
parent eb47a58029
commit 13df0901a8
2 changed files with 2 additions and 12 deletions
+2 -1
View File
@@ -24,5 +24,6 @@ In order to build and publish the Grafana build Docker image, execute the follow
```
# Download MacOSX10.15.sdk.tar.xz from our private GCS bucket into this directory
./build-deploy.sh
docker build -t grafana/build-container:<VERSION> .
docker push grafana/build-container:<VERSION>
```
-11
View File
@@ -1,11 +0,0 @@
#!/bin/bash
set -eo pipefail
_version="1.4.6"
_tag="grafana/build-container:${_version}"
_dpath=$(dirname "${BASH_SOURCE[0]}")
cd "$_dpath"
docker build -t $_tag .
docker push $_tag