We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4f0e4cb commit 01381e3Copy full SHA for 01381e3
Dockerfile
@@ -13,6 +13,7 @@ RUN apt-get update && apt-get install -y \
13
awscli \
14
ca-certificates \
15
git-lfs \
16
+ protobuf-compiler \
17
&& apt-get clean \
18
&& rm -rf /var/lib/apt/lists/*
19
@@ -35,4 +36,7 @@ RUN curl https://raw.githubusercontent.com/golang/dep/master/install.sh | sh \
35
36
# golangci-lint
37
RUN sh -c "curl -sfL https://install.goreleaser.com/github.com/golangci/golangci-lint.sh | sh -s -- -b $(go env GOPATH)/bin"
38
RUN golangci-lint --version
39
+
40
+# install protobuf for Go
41
+RUN GO111MODULE=on go get github.com/golang/protobuf/[email protected]
42
COPY golangci.yml /golangci.yml
0 commit comments