From 69d25536c1a753cbf156623df97f45ef88bd7c6e Mon Sep 17 00:00:00 2001 From: Mark Mandel Date: Tue, 29 Jan 2019 09:53:35 -0800 Subject: [PATCH] [SECURITY] Update Go to 1.11.5 Updating Go tooling, because of security issue in crypto/elliptic. Details: https://groups.google.com/forum/m/#!msg/golang-announce/mVeX35iXuSw/Flp8FX7QEAAJ --- build/build-image/Dockerfile | 2 +- examples/autoscaler-webhook/Dockerfile | 2 +- examples/simple-udp/Dockerfile | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) 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 .