Merge pull request #855 from mrjana/bugs

Fix golang.org/x/tools breakage in go 1.4
This commit is contained in:
aboch 2016-01-06 18:42:40 -08:00
commit dfea2836a5
1 changed files with 5 additions and 0 deletions

View File

@ -1,5 +1,10 @@
FROM golang:1.4-cross
RUN apt-get update && apt-get -y install iptables
RUN cd /go/src && mkdir -p golang.org/x && \
cd golang.org/x && git clone https://github.com/golang/tools && \
cd tools && git checkout release-branch.go1.5
RUN go get github.com/tools/godep \
github.com/golang/lint/golint \
golang.org/x/tools/cmd/vet \