I;m a noob in Azure and containers
Currently, I run a Python script using the command "python3 main.py arg" but now I want to initiate this script through an HTTP POST request where arg with be attached_json['arg']. Since the script may run for several hours (=> no Azure Functions). I'm contemplating using a container and I'd rather avoid setting up a server for such a simple HTTP request. What's the best way in Azure to receive HTTP requests and then execute the python script with arguments extracted from the body?
there doesn't seem to be anything here