https://flyte.org logo
#ask-the-community
Title
# ask-the-community
j

Joseph Yi

06/14/2023, 6:38 PM
Hi I updated flytectl and am running in a sandbox environment with
flytectl sandbox start --source .
When I run:
flytectl sandbox exec -- docker build . --tag "flyte:image_tag"
it now gives me the error
Copy code
unable to prepare context: unable to evaluate symlinks in Dockerfile path: lstat /Dockerfile: no such file or directory
Did anything change?
Actually, running
flytectl sandbox exec -- ls -al
showed that the Dockerfile was inside
/root
so
flytectl sandbox exec -- docker build /root --tag "flyte:image_tag"
worked
d

David Espejo (he/him)

06/14/2023, 6:47 PM
try
flytectl demo exec
3 Views