Please answer these questions before submitting your issue. Thanks!
go version)?go version go1.10.3 linux/amd64
yes
go env)?GOOS="linux"
GOARCH="amd64"
Build any go program in a docker image as a user that doesn't exist in the image.
Although this sounds weird, it is specifically allowed in the docker run documentation
When passing a numeric ID, the user does not have to exist in the container.
Any CI server following the principle of least privilege would be configured to run their containers in this way.
Assuming docker is installed, the following command will recreate the issue
docker run -u $UID golang /bin/bash -c "cd /go/src/; mkdir hello; cd hello;
echo 'package main
import \"fmt\"
func main() {
fmt.Println(\"hello world\")
}' > main.go; go run main.go"
More specifically, this is caused when $HOME is set to / which is what docker does in this situation.
hello world
go: disabling cache (/.cache/go-build) due to initialization failure: mkdir /.cache: permission denied
hello world
This is effectively an iteration on https://github.com/golang/go/issues/23638. Disabling the cache is probably still the correct thing to do, but in this case, the current error message is unnecessary and more confusing than it is helpful. You can see that confusion in https://github.com/docker-library/golang/issues/225.
As I suggested in my comment on that issue, if go were to silently set GOCHACHE to "off" when $HOME=='/' then this confusion would be avoided. Go already does this when $HOME=='', so I'm just proposing to extend that behavior to one more edge case.
I'm happy to submit a PR that fixes this if you agree with the change.
I think it would be fine to disable the cache in that case.
Change https://golang.org/cl/122487 mentions this issue: cmd/go/internal/cache: disable cache when $HOME is /
Per the Go 1.11 release notes:
Starting in Go 1.12, the build cache will be required
I suspect that means that Docker users will need to set GOCACHE explicitly when running a build as a nonexistent user.
Most helpful comment
Per the Go 1.11 release notes:
I suspect that means that Docker users will need to set
GOCACHEexplicitly when running a build as a nonexistent user.