mirror of
https://github.com/status-im/consul.git
synced 2025-01-09 21:35:52 +00:00
7af643ac37
* ci: stop building darwin/386 binaries Go 1.15 drops support for 32-bit binaries on Darwin https://golang.org/doc/go1.15#darwin * tls: ConnectionState::NegotiatedProtocolIsMutual is deprecated in Go 1.15, this value is always true * correct error messages that changed slightly * Completely regenerate some TLS test data Co-authored-by: R.B. Boyer <rb@hashicorp.com>
14 lines
368 B
Docker
14 lines
368 B
Docker
ARG GOLANG_VERSION=1.15.4
|
|
FROM golang:${GOLANG_VERSION}
|
|
|
|
ARG GOTOOLS="github.com/elazarl/go-bindata-assetfs/... \
|
|
github.com/hashicorp/go-bindata/... \
|
|
golang.org/x/tools/cmd/cover \
|
|
golang.org/x/tools/cmd/stringer \
|
|
github.com/axw/gocov/gocov \
|
|
gopkg.in/matm/v1/gocov-html"
|
|
|
|
RUN GO111MODULE=on go get -v ${GOTOOLS} && mkdir -p /consul
|
|
|
|
WORKDIR /consul
|