|
|
|
|
|
by sly010
3309 days ago
|
|
> Is it merely fear of C that keeps so much of the container infrastructure on Go? Sort of. Go binaries are statically linked by default which is a must in situations where you are e.g. unsure about what libs are available in the current environment. You have to go through a lot of hoops to make sure your C executable is really fully statically linked. |
|
Note though that Go packages will be statically linked into your binary by default.