I'm using the SDK directly and I'm looking for a way for interactive debugging. I found that there's a terminal method available in v0.12 so I'm trying it out, a sample code look something like this:
from sys import stdout
import anyio
import dagger
async def ci():
async with dagger.Connection(dagger.Config(log_output=stdout)) as client:
ci = client.container().from_("alpine").terminal()
await ci.stdout()
if __name__ == "__main__":
anyio.run(ci)
When I added the terminal method, the pipeline fail with the attached failure log.
Is it possible to get the debug terminal to work in this case? Thanks
