Handling MSAL Auth URIs in a Docker container
I'm trying to Dockerize a Python webapp that uses MSAL to handle authentication. I am acquiring the access token by using: auth_response = public_app.acquire_token_interactive(scopes=user_scopes, port=5000) token = auth_response['access_token'] The authentication runs smoothly whenever I test it locally. However, when I…