I have a script which I need to run remotely using a Docker image. For compatibility with another pre-compiled MATLAB application (SPM), I need to use a specific MATLAB version in the Docker, and also a different OS. Thing is, I don't have access to this OS / MATLAB version to pre-compile my own script with as well.
So my proposed solution was:
- download the MCR for the SPM application in the docker image
- upload SPM (so far this all works)
- upload the source files of my application to the docker image
- use mcc to compile my source within the docker image.
My questions:
- Is this possible? If so: Where do I find mcc within the MCR (since it is not callable as usual)?
- Better ways of doing this?
Thanks