Hi, I have a Golang stand-alone project which is using Dagger under the hood. And I would like to use the interactive terminal for occasional debugging in case of error.
However it seems that interactive terminal is only supported in dagger modules. Unfortunately my golang project is not a dagger module. Is there a way to still use this?
For a while I was using a SSH workaround - in case of error, convert the container into service and open SSH server, to which I can connect and I can debug whatever is wrong.