Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Dockerfile.test « raven-go « getsentry « github.com « vendor - gitlab.com/gitlab-org/gitlab-pages.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5089c13c9ae8e2465c0527db04209a2db477b924 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
FROM golang:1.7

RUN mkdir -p /go/src/github.com/getsentry/raven-go
WORKDIR /go/src/github.com/getsentry/raven-go
ENV GOPATH /go

RUN go install -race std && go get golang.org/x/tools/cmd/cover

COPY . /go/src/github.com/getsentry/raven-go

RUN go get -v ./...

CMD ["./runtests.sh"]