I have flow which has a step that runs in AWS: ```...
# ask-metaflow
e
I have flow which has a step that runs in AWS:
Copy code
@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?
1
s
you can set
METAFLOW_DEFAULT_CONTAINER_IMAGE
in your
~/.metaflowconfig
or have it in your environment as an alternative.
METAFLOW_DEFAULT_CONTAINER_IMAGE=foo python flow.py run
The image
foo
will execute as a default image for any step in the flow running on AWS Batch
e
thankyou thankyou