Dockerfile.build 438 B

1234567891011121314
  1. FROM golang:1.4-cross
  2. RUN apt-get update && apt-get -y install iptables
  3. RUN cd /go/src && mkdir -p golang.org/x && \
  4. cd golang.org/x && git clone https://github.com/golang/tools && \
  5. cd tools && git checkout release-branch.go1.5
  6. RUN go get github.com/tools/godep \
  7. github.com/golang/lint/golint \
  8. golang.org/x/tools/cmd/vet \
  9. golang.org/x/tools/cmd/goimports \
  10. golang.org/x/tools/cmd/cover\
  11. github.com/mattn/goveralls