Use statically linked prisma binary (linux-static-x64)
I want to use a staticailly linked binary (linux-static-x64) but it doesn't work as I'm getting this error:
The Go client uses that static binary, but apparently with the JS client it uses the http binary not the embedded binary which doesn't seem to exist as a static variant :/
2 Replies
Hello @Luca (steebchen) 👋
If I understand correctly, you are running into this exact issue right?
https://github.com/prisma/prisma/issues/23248
GitHub
npm ci
with PRISMA_CLI_BINARY_TARGETS=linux-static-x64
fails wi...Bug description Running PRISMA_CLI_BINARY_TARGETS=linux-static-x64 npm ci (or npm install) prints a scary error message when @prisma/client is a dependency in package.json. The reason seems to be t...
Ah yep that looks like the same issue
Thanks will follow that issue