Remove build-deploy.sh (#41586)

pull/41529/head
Dimitris Sotirakis 4 years ago committed by GitHub
parent eb47a58029
commit 13df0901a8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 3
      scripts/build/ci-build/README.md
  2. 11
      scripts/build/ci-build/build-deploy.sh

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

@ -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
Loading…
Cancel
Save