diff --git a/build/build-image/Dockerfile b/build/build-image/Dockerfile index 38f42e5117..80d5f06935 100644 --- a/build/build-image/Dockerfile +++ b/build/build-image/Dockerfile @@ -47,7 +47,7 @@ RUN wget -q https://static.rust-lang.org/rustup/archive/1.11.0/${RUST_ARCH}/rust # install go WORKDIR /usr/local -ENV GO_VERSION=1.11.4 +ENV GO_VERSION=1.11.5 ENV GOPATH /go RUN wget -q https://dl.google.com/go/go${GO_VERSION}.linux-amd64.tar.gz && \ tar -xzf go${GO_VERSION}.linux-amd64.tar.gz && rm go${GO_VERSION}.linux-amd64.tar.gz && mkdir ${GOPATH} diff --git a/examples/autoscaler-webhook/Dockerfile b/examples/autoscaler-webhook/Dockerfile index 4f3961dc3e..f2504f06a9 100644 --- a/examples/autoscaler-webhook/Dockerfile +++ b/examples/autoscaler-webhook/Dockerfile @@ -13,7 +13,7 @@ # limitations under the License. # Gather dependencies and build the executable -FROM golang:1.11.4 as builder +FROM golang:1.11.5 as builder WORKDIR /go/src/autoscaler-webhook COPY examples/autoscaler-webhook/main.go . diff --git a/examples/simple-udp/Dockerfile b/examples/simple-udp/Dockerfile index 5b69e3ae72..6ac3347b63 100644 --- a/examples/simple-udp/Dockerfile +++ b/examples/simple-udp/Dockerfile @@ -13,7 +13,7 @@ # limitations under the License. # build -FROM golang:1.11.4 as builder +FROM golang:1.11.5 as builder WORKDIR /go/src/simple-udp COPY examples/simple-udp/main.go .