In my AML pipeline, I've got a model built and deployed to the AciWebservice. I now have a need to include some additional data that would be used by score.py. This data is in json format (~1mb) and is specific to the model that's built. To accomplish this, I was thinking of sticking this file in blob store and updating some "placholder" vars in the score.py during deployment, but it seems hacky.
Here are some options I was contemplating but wasn't sure on the practicality
Option 1: Is it possible to include this file, during the model deployment itself so that it's part of the docker image?
Option 2: Another possibility I was contemplating, would it be possible to include this json data part of the Model artifacts?
Option 3: How about registering it as a dataset and pull that in the score file?
What is the recommended way to deploy dependent files in a model deployment scenario?