diff --git a/Dockerfile b/Dockerfile index 93b48b7..e5bd723 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.16 as build +FROM golang:1.17 as build WORKDIR /go/src/github.com/webdevops/gq-gmc-exporter diff --git a/go.mod b/go.mod index e675721..cb60808 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/webdevops/gq-gmc-exporter -go 1.16 +go 1.17 require ( github.com/golang/protobuf v1.5.2 // indirect @@ -11,3 +11,14 @@ require ( golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect gopkg.in/yaml.v2 v2.4.0 // indirect ) + +require ( + github.com/beorn7/perks v1.0.1 // indirect + github.com/cespare/xxhash/v2 v2.1.1 // indirect + github.com/matttproud/golang_protobuf_extensions v1.0.1 // indirect + github.com/prometheus/client_model v0.2.0 // indirect + github.com/prometheus/common v0.26.0 // indirect + github.com/prometheus/procfs v0.6.0 // indirect + golang.org/x/sys v0.0.0-20210603081109-ebe580a85c40 // indirect + google.golang.org/protobuf v1.26.0 // indirect +)