mirror of
https://github.com/luzifer-docker/personal-dns.git
synced 2024-12-20 12:41:18 +00:00
Switch to Github API for release query
Signed-off-by: Knut Ahlers <knut@ahlers.me>
This commit is contained in:
parent
1c74e3298d
commit
1909b2e470
1 changed files with 10 additions and 6 deletions
16
build.sh
16
build.sh
|
@ -2,15 +2,19 @@
|
||||||
set -euxo pipefail
|
set -euxo pipefail
|
||||||
|
|
||||||
# Install build utilities
|
# Install build utilities
|
||||||
apk --no-cache add curl
|
apk --no-cache add curl jq
|
||||||
|
|
||||||
# Get latest versions of tools using latestver
|
# Get latest versions of tools using Github API
|
||||||
DUMB_INIT_VERSION=$(curl -sSfL 'https://lv.luzifer.io/catalog-api/dumb-init/latest.txt?p=version')
|
ASSET_URL=$(
|
||||||
[ -z "${DUMB_INIT_VERSION}" ] && { exit 1; }
|
curl -s "https://api.github.com/repos/Yelp/dumb-init/releases/latest" |
|
||||||
|
jq -r '.assets[] | .browser_download_url' |
|
||||||
|
grep "$(uname -m)$"
|
||||||
|
)
|
||||||
|
[[ -n $ASSET_URL ]] || exit 1
|
||||||
|
|
||||||
# Install tools
|
# Install tools
|
||||||
curl -sSfLo /usr/local/bin/dumb-init https://github.com/Yelp/dumb-init/releases/download/v${DUMB_INIT_VERSION}/dumb-init_${DUMB_INIT_VERSION}_x86_64
|
curl -sSfLo /usr/local/bin/dumb-init "${ASSET_URL}"
|
||||||
chmod +x /usr/local/bin/dumb-init
|
chmod +x /usr/local/bin/dumb-init
|
||||||
|
|
||||||
# Cleanup
|
# Cleanup
|
||||||
apk --no-cache del curl
|
apk --no-cache del curl jq
|
||||||
|
|
Loading…
Reference in a new issue