Hi all, I am trying run a task within a container that I am building within a local deployment of flyte-sandbox. This is what I run:
flytectl sandbox start --source . --imagePullPolicy IfNotPresent
flytectl sandbox exec -- docker build -t new_image .
When I run
flytectl sandbox exec -- docker images
I see my image inside of the flyte-sandbox container.
REPOSITORY TAG IMAGE ID CREATED SIZE
new_image latest 044c6f6eb860 44 minutes ago 1.49GB
Within my
@task
, I reference
new_image
. When I go to run the workflow remotely, I receive the following error after about 30 seconds:
[1/1] currentAttempt done. Last Error: USER::containers with unready status: [ffdb7fdd18e544b99a24-n0-0]|Back-off pulling image "new_image:latest"
Any thoughts?