Michael Hadorn
02/04/2021, 1:29 PMZanie
python_dependencies
is a simple solution. The downside is that everytime your flow changes you have to rebuild a docker image. If you use a DockerRun referring to an image you've built (use the prefect image as a base and install your own dependencies on top of it) then you can use Github storage to build your flow (which is much faster)DockerRun
you would deploy your image using typical docker build/push commands then refer to the tag in your code. If you're using DockerStorage
you would deploy your image by setting the registry_url
Michael Hadorn
02/04/2021, 5:55 PMZanie
Michael Hadorn
02/05/2021, 8:11 AM