I am trying to run a workflow on Github Action, with job in a custom container.
All works well until I try using Action depending on Node, where I get the error:
OCI runtime exec failed: exec failed: unable to start container process: exec: "/__e/node20/bin/node": stat /__e/node20/bin/node: no such file or directory: unknown
After more research, I found multiple topic talking about simular issues.
From what I understand, it appears this is due to problem with dynamic linking of NodeJs with some libs on the host.
Ok cool, but, how do I fix that? Is there a base Docker image that do not have this issue?
I tried building my container over official Node image "FROM node:20", but still same issue.