Balena 64 bit version Raspberry pi 3 b+ build error with node

Hey guys, I’m doing a multi-container build and one of my services has the following in the package,json

  "engines": {
    "node": "10.16.3"
  }
On build I get:
Could not detect project type: Couldn't satisfy node version 10.16.3

I’ve tried changing the node versions with no luck. Any ideas on how to resolve this?

What node versions did you try? I believe the way you’ve declared the engine dependency will require that exact version of node on the builder. Can you try “node”: “>=10.0” or “node”: “^10.0” instead?

Yes, I’ve since tried this with no luck

"engines": {
      "node": ">=8.0.0 <11.0.0" 
        }
I get the same error on this as well

 "engines": {
      "node": ">=10.0" 
        }

What base image are you using for this build?
Ideally you can set you engine by using one of the nodejs base images and setting the engine version there (...-node:10-...), see more info here, if you want to check it out https://www.balena.io/docs/reference/base-images/base-images/