在使用Docker构建Golang1.16.x时遇到了`//go:build comment without // +build comment`的问题
经过
在运行Docker上的golang1.16.x时遇到了错误。
../pkg/mod/golang.org/x/tools@v0.1.10/go/internal/cgo/cgo.go:67:2: //go:build comment without // +build comment
应对
只要升级到1.17.x版本,问题就解决了。
FROM golang:1.17.9-alpine3.15