2019-09-03 08:46:45 -04:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
2020-04-11 23:19:10 -04:00
|
|
|
[[ "${DOCKER_TAG}" == "amd64" ]] && \
|
2019-09-03 08:46:45 -04:00
|
|
|
{ echo 'qemu-user-static: Registration not required for this arch';exit 0; }
|
|
|
|
|
2019-09-03 19:09:52 -04:00
|
|
|
docker run --rm --privileged multiarch/qemu-user-static:register --reset
|