Ok I know the software-today-is-so-bloated trope is overplayed but... "the UNIX way"? The compiled Linux x86_64 binary is 7 megabytes. All of System V combined was not that big.
> Written in Go I have a fairly simple web-app written in go – no websockets, just net/http. I just checked and the binary size is 6.8 megabytes. There's a lot in there. For starters, there's the go runtime. Then there's the HTTP server. I suspect there may be ways to improve on the binary size if it mattered so much. xz gets it down to 2.1MB, suggesting there's some redundancy in there.
`go build -ldflags="-s -w"`