Hello,

I'm trying to run the Report creator via Docker, but unfortunately, I keep returning errors. This is what I have so far:

docker run --rm \
--mount type=bind,source=$(pwd)/Launcher/config.json,target=/Lean/Launcher/config.json,readonly \
--mount type=bind,source=$(pwd)/Data,target=/Data,readonly \
--mount type=bind,source=$(pwd)/Results,target=/Results \
-it \
--entrypoint="mono QuantConnect.Lean.Report.exe" \
quantconnect/lean:latest --backtest-data-source-file /Results/BasicTemplateFrameworkAlgorithm.json

The error is: `exec: \"mono QuantConnect.Lean.Report.exe\": executable file not found in $PATH": unknown.`

I'm pretty new to this project so not even sure whether the report creator is even part of the Docker image.

Can anyone help me out here? Thanks!