0

When I run buildah bud, I'm getting the following error.

npm ERR! code EMFILE
npm ERR! syscall open
npm ERR! path /root/.npm/_cacache/index-v5/cd/a5/aca06eccd914d83e3be09412f45e00ceac1150a83df0e32d015284f4c8f6
npm ERR! errno -24
npm ERR! EMFILE: too many open files, open '/root/.npm/_cacache/index-v5/cd/a5/aca06eccd914d83e3be09412f45e00ceac1150a83df0e32d015284f4c8f6'

How can I resolve this problem?

Evan Carroll
  • 28,578
  • 45
  • 164
  • 290

1 Answers1

0

This problem can be solved with this method using --ulimit

buildah bud --ulimit nofile=4096:4096
Evan Carroll
  • 28,578
  • 45
  • 164
  • 290