1

I want to install packages using apt get on vercel serverless node.js.
how can i do it??

1 Answers1

3

Former Vercel engineer here. I'm afraid it's not possible. Serverless functions are built in isolated containers and packaged for AWS Lambda. If you need to use a specific package, you should check if it's available via npm (a lot of tools are, like for example Puppeteer). Otherwise it's not possible.

max
  • 366
  • 3
  • 9