-
I have a raspberry pi 4 that I'd like to use to run this on. I see that the Dockerfile only checks for 64-bit architectures, but I'm wondering if I could modify the Dockerfile to also support armv7, which is the architecture of my raspberry pi 4. Does that sound possible? Here's the error I see when I try to build a docker image on my RPi4:
|
Beta Was this translation helpful? Give feedback.
Answered by
jesec
Oct 18, 2021
Replies: 1 comment
-
Not with the current form. Bazel (the build system) does not support armv7. You would have to use CMake, instead. A better solution is to switch to 64-bit. rpi4 does support 64-bit. |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
jonesnc
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Not with the current form. Bazel (the build system) does not support armv7.
You would have to use CMake, instead.
A better solution is to switch to 64-bit. rpi4 does support 64-bit.