This might be a buildctl question but I'm trying to exec into a container (mid pipeline) by ID. Is there any existing tooling to do this type of thing? (Maybe not dagger). Seems like it should be possible, I could do it in docker w/ a docker exec
The full context is that I'm trying to explore the filesystem mid pipeline in an easier way than printing or debugging content like below
test, err := base.Exec(dagger.ContainerExecOpts{Args: []string{"-c", "ls -alr"}}).Stdout().Contents(ctx.ContextWithTimeout(5 * time.Minute))