There isn't a NoVNC container image published to Docker Hub that supports arm64 (e.g., new Macs or Raspberry Pis). (The treehouse/novnc image is completely, and honestly quite impressively, broken.)
I was able to build yours and run it just fine on a Raspberry Pi 4. It would be great if you could publish the images for multiple platforms so it doesn't have to be rebuilt.
You would need to tweak your CircleCI config to use docker buildx build, something like this:
The downside is that you have to build and push in a single step. And you probably need to figure out how to configure qemu-user-static and binfmt_msc -- not sure how easy that is to do on CircleCI.
There isn't a NoVNC container image published to Docker Hub that supports arm64 (e.g., new Macs or Raspberry Pis). (The
treehouse/novnc
image is completely, and honestly quite impressively, broken.)I was able to build yours and run it just fine on a Raspberry Pi 4. It would be great if you could publish the images for multiple platforms so it doesn't have to be rebuilt.
You would need to tweak your CircleCI config to use
docker buildx build
, something like this:The downside is that you have to build and push in a single step. And you probably need to figure out how to configure
qemu-user-static
andbinfmt_msc
-- not sure how easy that is to do on CircleCI.