Can I use a custom Docker image for my Python webapp in Azure, and then deploy my python application to that container through a pipeline? We need a specific tool to run the Python app so we can not use the default Azure container as it does not meet the requirements for that tool.
I do not want to add my Python web app to the image itself.
I created an image and depoyed that one but the logs in Azure say
'Container XXX didn't respond to HTTP pings on port: 80, failing site start. See container logs for debugging.'
I then added a "EXPOSE 80" section to my Dockerfile but then I get no logs at all.



Dockerfileand what tool you want to use to run the python app?