bump golang to 1.20.1 to address buildvcs=true failure
The older golang:1.19.3-alpine3.15 as builder is failing, due to the go build error 'error obtaining VCS status: exit status 128'. Bumping the builder image to golang:1.20.1-alpine3.17 fixes the this go build failure.
This commit is contained in:
parent
d446d1b0ea
commit
29fa6a50ab
1 changed files with 1 additions and 1 deletions
|
@ -2,7 +2,7 @@ ARG IMAGE=scratch
|
|||
ARG OS=linux
|
||||
ARG ARCH=amd64
|
||||
|
||||
FROM golang:1.19.3-alpine3.15 as builder
|
||||
FROM golang:1.20.1-alpine3.17 as builder
|
||||
|
||||
WORKDIR /go/src/github.com/eko/pihole-exporter
|
||||
COPY . .
|
||||
|
|
Loading…
Reference in a new issue