I have in my free subscription plan created a azure function app with Python run time, OS being selected as Linux, plan shows as CentralUSLinuxDynamicPlan (Y1: 0)
Whole Idea about this App is to respond to http request and download the PDF (It converts the HTML to pdf)
So to convert HTML into PDF, i would need to add some packages into this Azure function app. I believe they can be added with SSH commands as given below
dpkg -i wkhtmltox_0.12.6-1.buster_amd64.deb
apt-get install -f
cp /usr/local/bin/wkhtmlto /usr/bin/*
But, am told it's no possible to use SSH at all on plain azure function app, so is why SSH isn't visible to me in the left menu bar. Is it true that SSH can be used only with dockerized Azure function app only ?
If I dont want to dockerize and want to still install packages into my Python Azure function app what should i do ? Googled a lot, no clear details on Doc as well.
I saw some responses to access KUDU with SCM URL, no, for me that doesn't open into anything but just some settings with nothing to do there