Hi I updated flytectl and am running in a sandbox ...
# ask-the-community
j
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
try
flytectl demo exec
152 Views