mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
5fa03a4a8e
This allows overriding the version of Go without making modifications in the source code, which can be useful to test against multiple versions. For example: make GO_VERSION=1.13beta1 build Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
22 lines
577 B
Docker
22 lines
577 B
Docker
ARG GO_VERSION=1.12.6
|
|
|
|
FROM golang:${GO_VERSION} as dev
|
|
RUN apt-get update && apt-get -y install iptables \
|
|
protobuf-compiler
|
|
|
|
RUN go get -d github.com/gogo/protobuf/protoc-gen-gogo && \
|
|
cd /go/src/github.com/gogo/protobuf/protoc-gen-gogo && \
|
|
git reset --hard 30cf7ac33676b5786e78c746683f0d4cd64fa75b && \
|
|
go install
|
|
|
|
RUN go get golang.org/x/lint/golint \
|
|
golang.org/x/tools/cmd/cover \
|
|
github.com/mattn/goveralls \
|
|
github.com/gordonklaus/ineffassign \
|
|
github.com/client9/misspell/cmd/misspell
|
|
|
|
WORKDIR /go/src/github.com/docker/libnetwork
|
|
|
|
FROM dev
|
|
|
|
COPY . .
|