fix hooks scripts
This commit is contained in:
parent
df894f716b
commit
b493330c7d
@ -1,16 +1,16 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
BUILD_ARCH=$(echo "${DOCKERFILE_PATH}" | cut -d '.' -f2)
|
BUILD_ARCH=$(echo "${DOCKERFILE_PATH}" | cut -d'.' -f2)
|
||||||
|
|
||||||
[ "${BUILD_ARCH}" == "Dockerfile" ] && \
|
[ "${BUILD_ARCH}" == "Dockerfile" ] && \
|
||||||
{ echo 'qemu-user-static: Download not required for this arch'; exit 0; }
|
{ echo 'qemu-user-static: Download not required for this arch'; exit 0; }
|
||||||
|
|
||||||
TAGS_API="https://api.github.com/repos/multiarch/qemu-user-static/tags"
|
TAGS_API="https://api.github.com/repos/multiarch/qemu-user-static/tags"
|
||||||
URL="https://github.com/multiarch/qemu-user-static/releases/download"
|
URL="https://github.com/multiarch/qemu-user-static/releases/download"
|
||||||
LATEST_TAG=$(curl -LSs $TAGS_API \
|
LATEST_TAG=$(curl -Ls $TAGS_API | \
|
||||||
| awk -F'"' '/name.*v[0-9]/ {print $4; exit}')
|
awk -F'"' '/name.*v[0-9]/ {print $4; exit}')
|
||||||
STATIC_ARCH=$([ "${BUILD_ARCH}" == "armhf" ] && \
|
STATIC_ARCH=$([ "${BUILD_ARCH}" == "armhf" ] && \
|
||||||
echo "${BUILD_ARCH::-2}" || echo "${BUILD_ARCH}")
|
echo "${BUILD_ARCH::-2}" || echo "${BUILD_ARCH}")
|
||||||
|
|
||||||
curl -LSs "${URL}/${LATEST_TAG}/x86_64_qemu-${STATIC_ARCH}-static.tar.gz" \
|
curl -Ls "${URL}/${LATEST_TAG}/x86_64_qemu-${STATIC_ARCH}-static.tar.gz" | \
|
||||||
| tar xzv
|
tar xzv
|
@ -1,8 +1,8 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
BUILD_ARCH=$(echo "${DOCKERFILE_PATH}" | cut -d '.' -f2)
|
BUILD_ARCH=$(echo "${DOCKERFILE_PATH}" | cut -d'.' -f2)
|
||||||
|
|
||||||
[ "${BUILD_ARCH}" == "Dockerfile" ] && \
|
[ "${BUILD_ARCH}" == "Dockerfile" ] && \
|
||||||
{ echo 'qemu-user-static: Registration not required for this arch';exit 0; }
|
{ echo 'qemu-user-static: Registration not required for this arch';exit 0; }
|
||||||
|
|
||||||
docker run --rm --privileged multiarch/qemu-user-static:register --reset
|
docker run --rm --privileged multiarch/qemu-user-static:register --reset
|
Loading…
Reference in New Issue
Block a user