The deno:bin container crashes immediately because the deno binary has been dynamically linked and the required shared libraries are deliberately missing.
What you want instead is to link the deno binary statically (pretty trivial in rust) such that it's self-contained. Then, copy the statically linked deno binary into the deno:bin image. This resolves the issue.
{"msg":"exec container process (missing dynamic library?) /deno: No such file or directory","level":"error","time":"2025-07-17T05:08:21.395134Z"}
See the screenshot below for some more details

The
deno:bincontainer crashes immediately because thedenobinary has been dynamically linked and the required shared libraries are deliberately missing.What you want instead is to link the
denobinary statically (pretty trivial in rust) such that it's self-contained. Then, copy the statically linkeddenobinary into thedeno:binimage. This resolves the issue.See the screenshot below for some more details
