I\'ve got a Go binary I\'m trying to run on the Alpine Docker image.
This works fine for the Docker Go binary.
docker run -it alpine:3.3 sh apk add -
When building under Debian 9 (Stretch) / Go 1.10.2 and running under Alpine 3.7.0:
CGO_ENABLED=0 go build
Neither GOOS=linux nor GOARCH=amd6 was necessary.
GOOS=linux
GOARCH=amd6