go build -o app
./app
also
cd bin
./app
Use -host flag if needed
./app -host=yourhost:port
default:"localhost:8080"
to create container of go application
docker build -t mafiosi:go-server .
to start docker container
docker run -p 8080:8080 mafiosi:go-server
more information about installs and settings docker by link