Here is how you can resolve your issue.
ADD go /usr/local/
will copy the contents of your local go directory in the /usr/local/ directory of your docker image.
To copy the go directory itself in /usr/local/ use:
ADD go /usr/local/go
or you can try the below commands as well.
COPY go /usr/local/go