Remove build-deploy.sh (#41586)

This commit is contained in:
Dimitris Sotirakis 2021-11-11 10:23:12 +02:00 committed by GitHub
parent eb47a58029
commit 13df0901a8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 12 deletions

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>
```

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