Created
July 11, 2016 12:58
-
-
Save pwaller/7b8c73a84b4c5bef5ce107fe009eb8d8 to your computer and use it in GitHub Desktop.
go build -race failing on go1.7rc1-alpine
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Build with: | |
# docker build -t race-build-failure https://gist.github.com/7b8c73a84b4c5bef5ce107fe009eb8d8.git | |
FROM golang:1.7rc1-alpine | |
RUN apk add --no-cache musl-dev gcc | |
WORKDIR /go/src/testrace | |
RUN echo $'package main\nfunc main() {}' > main.go | |
RUN go install -v -race . |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment