Bind: permission denied error

Hello,
I’ve been trying to compile the lora app server v 2.2.0 from source using Docker.

I use the commands:
make requirements ui-requirements
followed by:
make build
And I get a binary. I then proceed to copy this new binary to my already working vagrant VM.
After I do this, the server never starts and I get the following

I’ve noticed the version number is empty in the logs.

Any tips on how to make my binary work?

This has nothing to do with compiling the source. See the bind 0.0.0.0:443 permission denied error. The user starting the binary has no permissions to bind to 443. See also: https://stackoverflow.com/questions/10182798/why-are-ports-below-1024-privileged.

Thank you, indeed it was that the issue, I tried with a different port and it worked!