I had a use case where the azure functions had to be deployed as docker container in function app . but can not use the Microsoft base image for python azure function(docker pull mcr.microsoft.com/azure-functions/python:4-python3.9).
had to use the own golden image (Red Hat 8) which is had python 3.8 installed on it. how to use this base image to build a another custom image to make it compatible with azure functions.
does installing the 1) azure core functions tools and
2) azure cli
is enough to make it compatible with azure functions. tried to find the document for this use case but no document is available on this.
any guidance is helpful