I'm facing a problem when I try to run the docker run command:
docker run -it --volume $(pwd):/project mmdb-from-go:latest /bin/bash
and afterwards the Go build command:
go build && ./mmdb-from-go-blogpost
I need to update the go build command to the following to get it working:
go build -buildvcs=false && ./mmdb-from-go-blogpost
Is this something only I'm having trouble with or is this a general problem?