Our product containers use the s6 init system instead of the common default dumb-init. We want to be able to test that our container service starts up correctly using s6.
However using the container.WithExec([]string{"echo", "hello"}), it seems to always use the dumb-init echo hello on the container. Really we'd like to run the /init s6 program as PID 1, and no other init system involved. This would be the default behavior on our container by just setting the entrypoint correct and doing "docker run <our-image>".
Is there a way to use a custom entrypoint for exec on dagger? Or is there a way to "run" a container in dagger?
