The following Dockerfile crashes with a QEMU error on apple silicon MacBooks. I filed a bug with docker and they point out that it’s due to the QEMU for x86 that you install in your image that’s intended for cross compilation etc.
FROM balenalib/rpi-raspbian:bullseye-20210925
USER root
RUN apt-get update -y && apt-get upgrade -y
…
#6 1.121 Get:1 Index of /debian bullseye InRelease [23.5 kB]
#6 1.122 qemu: uncaught target signal 4 (Illegal instruction) - core dumped
Hey,
Can you share what version of docker you run on the Apple Silicon Macbook and would it be possible to upgrade to latest docker? Older versions of docker on the M1 are said to encounter this error when trying to run an image that is of a different platform from the host platform.
Can you share the exact docker command that you supplied along with all the console logs. Also, sharing the output of the following command could be useful for us to debug: docker run --rm balenalib/rpi-raspbian:bullseye-20210925 uname -a
.
Thanks and regards,
Pranav
I was on 4.3.1, but 4.3.2 just got released today, so I’ll try that shortly:
[2/2] RUN apt-get update -y && apt-get upgrade -y:
#6 1.101 Get:1 Index of /debian bullseye InRelease [23.5 kB]
#6 1.102 qemu: uncaught target signal 4 (Illegal instruction) - core dumped
#6 1.165 Reading package lists…
#6 1.273 E: Method http has died unexpectedly!
#6 1.274 E: Sub-process http received signal 4.
executor failed running [/bin/sh -c apt-get update -y && apt-get upgrade -y]: exit code: 100
the output from docker run is:
docker run --rm balenalib/rpi-raspbian:bullseye-20210925 uname -a.
Unable to find image ‘balenalib/rpi-raspbian:bullseye-20210925’ locally
bullseye-20210925: Pulling from balenalib/rpi-raspbian
056c33c5064f: Already exists
d6956781cbe1: Already exists
508b532f0d5d: Already exists
252d2745c245: Already exists
046f94b74af6: Already exists
9d55a830224d: Already exists
856802ec589a: Already exists
a317dcb67c12: Already exists
Digest: sha256:877f35b71186b7103bfdf36212d29ed1185d9a8a63dbe7986ce6b37ecf4d75e2
Status: Downloaded newer image for balenalib/rpi-raspbian:bullseye-20210925
WARNING: The requested image’s platform (linux/arm/v6) does not match the detected host platform (linux/arm64/v8) and no specific platform was requested
/usr/bin/uname: invalid option – ‘.’
Try ‘/usr/bin/uname --help’ for more information.
it fails in the same way with docker desktop 4.3.2.
Cheers, Cos.
Hello,
Thanks for sharing more details. Can you share a link to the bug you filed with Docker? That should give us some more information about this issue.
Best regards,
Pranav
It’s in an email thread, note that other raspbian images do build successfully. Here’s what they said:
The issue seems to be with the specific image. balenalib/rpi-raspbian:bullseye-20210925
. For example that image tries to override qemu settings inside image and also ships with its own embedded qemu binary (x86_64!) inside image.
For example docker run -it --rm -e QEMU_CPU=max balenalib/rpi-raspbian:bullseye-20210925 apt-get update -y && apt-get upgrade -y
that resets some of these settings does not produce “Illegal instruction”.
you should take a look at:
https://github.com/docker/for-mac/issues/5561
I think you should consider changing your image to ensure that the included qemu is configured to specify QEMU_CPU=max?
Cheers, Cos.
Hey there
You mentioned
The issue seems to be with the specific image. balenalib/rpi-raspbian:bullseye-20210925
Did you try with a more recent version?
We do ship qemu in the images, you can read more here
thanks, I did not try a newer version but setting qemu=max also worked.