go build -ldflags "-w -s"
that will remove the debugging information and shrink the binary size by ~30%.
GOOS -> Operating system
GOOS
GOARCH -> Architecture
GOARCH
GOOS="linux" GOARCH="amd64" go build hello.go
Last updated 7 months ago