node-red / node-red-docker

Repository for all things Node-RED and Docker related
Apache License 2.0
469 stars 382 forks source link

The newest latest didn't support linux/arm/v7 architecture #439

Open SuiKaSan opened 1 week ago

SuiKaSan commented 1 week ago

What are the steps to reproduce?

Pull docker nodered/node-red image with tag latest and specify linux/arm/v7 arch.

What happens?

Pull failed because of arch not exist.

What do you expect to happen?

Pull success.

Please tell us about your environment:

[ ] Platform/OS:

arm/v7

[ ] Browser:

hardillb commented 1 week ago

This is because building all the 32bit ARM containers (ARMv6 and ARMv7) hangs when run with docker buildx and qemu when running on GitHub Actions.

The Node v20+ all do this.

https://github.com/nodejs/node/issues/50339

We are looking at ways to do native builds for 32bit ARM, we will add the builds back when we have a solution.