Vendor go-check in

Signed-off-by: Kenfe-Mickael Laventure <mickael.laventure@gmail.com>
This commit is contained in:
Kenfe-Mickael Laventure
2016-03-24 18:18:29 -07:00
parent 3f388f8638
commit 9992d2e1bd
26 changed files with 3359 additions and 2 deletions

View File

@@ -0,0 +1,16 @@
FROM golang:1.5
RUN go get golang.org/x/tools/cmd/cover
RUN go get github.com/golang/lint/golint
RUN go get golang.org/x/tools/cmd/vet
RUN go get github.com/Masterminds/glide
WORKDIR /go/src/github.com/vdemeester/shakers
# enable GO15VENDOREXPERIMENT
ENV GO15VENDOREXPERIMENT 1
COPY glide.yaml glide.yaml
RUN glide up
COPY . /go/src/github.com/vdemeester/shakers