gifted-house-14547
02/17/2023, 8:52 AM@task(image=image1)
def task_a():
import some_package_only_in_1
return some_package_only_in_1()
@task(image=image2)
def task_n():
import some_package_only_in_2
return some_package_only_in_2()
Those modules between some_package_only_in_1&some_package_only_in_2
have dependency conflicts.
Thus, I should try to build multi containers for each tasks.
For example, I will run the entire workflow container with the name of workflow_image
. It does not contain both modules, some_package_only_in_1&some_package_only_in_2
.
Dose it make Runtime Error when I execute serialize source codes
because of both modules?
Thank you!tall-lock-23197
some_package...
.
Have I answered your question?gifted-house-14547
02/18/2023, 3:12 AM