Run Deno on Linux without /proc mounted
I have a few automatic scripts using deno to run stuff, and wanted to migrate them to another Machine. For various reasons deno doesn't run on the new Host (mainly missing Libraries) so I wanted to run deno in a chroot. However that fails, because /proc is not mounted in the chroot and for some reason deno seems to rely on /proc/self/exe. Is there a way to not need that? Or do I need to mount /proc in the chroot?
