1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00

Makefile, Dockerfile: Add support for regenerating protocol buffers

Signed-off-by: Euan Harris <euan.harris@docker.com>
This commit is contained in:
Euan Harris 2018-06-20 17:20:49 +01:00
parent 6716626d32
commit 22a24df515
2 changed files with 15 additions and 2 deletions

View file

@ -1,12 +1,14 @@
FROM golang:1.10.2 as dev
RUN apt-get update && apt-get -y install iptables
RUN apt-get update && apt-get -y install iptables \
protobuf-compiler
RUN go get github.com/golang/lint/golint \
golang.org/x/tools/cmd/cover \
github.com/mattn/goveralls \
github.com/gordonklaus/ineffassign \
github.com/client9/misspell/cmd/misspell \
honnef.co/go/tools/cmd/gosimple
honnef.co/go/tools/cmd/gosimple \
github.com/gogo/protobuf/protoc-gen-gogo
WORKDIR /go/src/github.com/docker/libnetwork