0

Command:

"sudo apt-get install libasound2 alsa-utils alsa-oss" 

Functions app : Linux, python

We install other modules using requirements.txt, But how can i run the above command in functions app.

Please guide/help on this.. Thanks!

Raphael Titus
  • 173
  • 12

1 Answers1

0

libasound2 package cannot be installed in general function apps. Rather go for docker container function apps, where this package can be installed in Dockerfile using the below command,

RUN YES | sudo apt-get install libasound2 alsa-utils alsa-oss
Raphael Titus
  • 173
  • 12
  • 1
    Can someone verify this answer as per current state of Azure Functions. Or a link to documentation can also be helpful. – codeonion May 16 '22 at 13:59