is there a separate command to only create the fil...
# ask-metaflow
w
is there a separate command to only create the file containing my code and all it's dependencies, without creating a step function?
1
a
just the code package ? try
python flow.py package --help
w
ah yes, this is what i was looking for! does it respect the arguments to the flow?
a
This will only package the flow so parameters etc. are not applicable in this context
w
got it
Hmm I just tried the "package save" command but I don't see any of the dependencies in the resulting file. I do see a file called
conda.dependencies
though. Can I somehow use that to install the actual dependencies on the target system? I'm trying to reuse metaflow's packaging system to bundle up some code for use in a Docker image