Thomas La Piana
09/07/2020, 3:26 AMnicholas
flow.register
from within a docker container, it'll need to have access to a docker daemon if you're using docker storage. That means either docker in docker or exposing the host machine's docker daemon on an accessible port within your docker container.
It sounds like your problem isn't with docker, though, but is with dependencies. The most straightforward way to make sure any external dependencies are available is to make them pip
-installable. Second to that, you can add them to a custom docker image which you use as your flow's base image.Thomas La Piana
09/07/2020, 9:02 AM