elegant-dress-32875
02/22/2023, 8:59 PM@batch(cpu=8, memory=24576, image=FULL_IMAGE)
@step
def my_fave_step(self):
print("woohoo in my favorite step")
is it possible to make FULL_IMAGE a variable that can get passes into the flow?square-wire-39606
02/22/2023, 10:46 PMMETAFLOW_DEFAULT_CONTAINER_IMAGE in your ~/.metaflowconfig or have it in your environment as an alternative. METAFLOW_DEFAULT_CONTAINER_IMAGE=foo python flow.py runsquare-wire-39606
02/22/2023, 10:47 PMfoo will execute as a default image for any step in the flow running on AWS Batchelegant-dress-32875
02/22/2023, 11:11 PM