problem: when running compiled golang application `GLIBC_2.32' not found
solution: compile without CGO, this could make some issues if you need to CGO_ENABLED=0 disables calling C code (import "C").
example: CGO_ENABLED=0 go build -o webserver main.go