Source: medium.com

Go and static linking

Category: Deployment, Ubuntu, Docker

Hello! As you know, linking in golang is static. It means that all libraries need to run our programs included in our final binary. And this is great — no more version problem, most straightforward deployment, etc. The only tradeoff is binary size, but this is not a problem in 2020. Perfect.

Related Articles