It depends on how much you want to embrace docker. In general you can use this binding without touching docker at all.
But if you want, you can use docker in every step of the process.
It starts with the minimal setup that just depends on Go + Docker.
Then continues during development, so if you would want for example test your application on android really quick, then you would just need to pull the android image instead of setting up the android SDK, NDK and JDK by yourself.
And then in the end you can use docker for your CI and CD processes as well.
For example by creating your own docker images on top of provided ones.