2019-09-03 15:46:45 +03:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
2019-09-04 03:39:09 +03:00
|
|
|
[[ "${DOCKER_TAG}" == "latest" ]] && \
|
2019-09-03 15:46:45 +03:00
|
|
|
{ echo 'qemu-user-static: Download not required for this arch'; exit 0; }
|
|
|
|
|
|
|
|
TAGS_API="https://api.github.com/repos/multiarch/qemu-user-static/tags"
|
|
|
|
URL="https://github.com/multiarch/qemu-user-static/releases/download"
|
2019-09-04 02:09:52 +03:00
|
|
|
LATEST_TAG=$(curl -Ls $TAGS_API | \
|
|
|
|
awk -F'"' '/name.*v[0-9]/ {print $4; exit}')
|
2019-09-04 03:39:09 +03:00
|
|
|
ARCH=$([[ "${DOCKER_TAG}" == "armhf" ]] && \
|
|
|
|
echo "${DOCKER_TAG::-2}" || echo "${DOCKER_TAG}")
|
2019-09-03 15:46:45 +03:00
|
|
|
|
2019-09-04 03:39:09 +03:00
|
|
|
curl -Ls "${URL}/${LATEST_TAG}/x86_64_qemu-${ARCH}-static.tar.gz" | \
|
2019-09-04 02:09:52 +03:00
|
|
|
tar xzv
|