When file is uploaded to onedrive I need to trigger java code to read content of the file. This java code is to be made as docker image and pushed to azure container registry. What steps should I take to pass this file as an input to java code and integrate these azure services together so that it can be read from inside docker container?
I tried using Azure functions that can trigger java code but unable to pass the file content to java code which has to be present in azure container registry. I read about webhooks but webhooks needs URL to post the request. What URL should I used and how can I pass the file/file content in post request that I couldn't identify.