We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents f30a35b + 52cb776 commit 9ffeaf7Copy full SHA for 9ffeaf7
1 file changed
Dockerfile
@@ -2,13 +2,17 @@ FROM golang:1.10.2 as dev
2
RUN apt-get update && apt-get -y install iptables \
3
protobuf-compiler
4
5
+RUN go get -d github.com/gogo/protobuf/protoc-gen-gogo && \
6
+ cd /go/src/github.com/gogo/protobuf/protoc-gen-gogo && \
7
+ git reset --hard 30cf7ac33676b5786e78c746683f0d4cd64fa75b && \
8
+ go install
9
+
10
RUN go get github.com/golang/lint/golint \
11
golang.org/x/tools/cmd/cover \
12
github.com/mattn/goveralls \
13
github.com/gordonklaus/ineffassign \
14
github.com/client9/misspell/cmd/misspell \
- honnef.co/go/tools/cmd/gosimple \
- github.com/gogo/protobuf/protoc-gen-gogo
15
+ honnef.co/go/tools/cmd/gosimple
16
17
WORKDIR /go/src/github.com/docker/libnetwork
18
0 commit comments