From 85b26c18384157843a3f016a7b8d8cff165f87ae Mon Sep 17 00:00:00 2001 From: Mark Mandel Date: Mon, 16 Nov 2020 15:26:34 -0800 Subject: [PATCH] Updated Go to 1.14.12 Specifically didn't upgrade to 1.15.x due to issues with SSL certificates on fleet autoscaler webhooks. --- build/build-image/Dockerfile | 2 +- build/build-sdk-images/go/Dockerfile | 2 +- build/build-sdk-images/restapi/Dockerfile | 2 +- build/e2e-image/Dockerfile | 2 +- examples/autoscaler-webhook/Dockerfile | 2 +- examples/crd-client/Dockerfile | 2 +- examples/simple-game-server/Dockerfile | 2 +- examples/simple-tcp/Dockerfile | 2 +- examples/simple-udp/Dockerfile | 2 +- examples/supertuxkart/Dockerfile | 2 +- examples/xonotic/Dockerfile | 2 +- 11 files changed, 11 insertions(+), 11 deletions(-) diff --git a/build/build-image/Dockerfile b/build/build-image/Dockerfile index 1a76c8dd62..7958cf7d2e 100644 --- a/build/build-image/Dockerfile +++ b/build/build-image/Dockerfile @@ -23,7 +23,7 @@ RUN apt-get update && \ # install go WORKDIR /usr/local -ENV GO_VERSION=1.14.4 +ENV GO_VERSION=1.14.12 ENV GOPATH /go ENV GO111MODULE=on RUN wget -q https://dl.google.com/go/go${GO_VERSION}.linux-amd64.tar.gz && \ diff --git a/build/build-sdk-images/go/Dockerfile b/build/build-sdk-images/go/Dockerfile index 45fc809408..b0764f5268 100644 --- a/build/build-sdk-images/go/Dockerfile +++ b/build/build-sdk-images/go/Dockerfile @@ -20,7 +20,7 @@ RUN apt-get update && \ # install go WORKDIR /usr/local -ENV GO_VERSION=1.14.4 +ENV GO_VERSION=1.14.12 ENV GO111MODULE=on ENV GOPATH /go RUN wget -q https://dl.google.com/go/go${GO_VERSION}.linux-amd64.tar.gz && \ diff --git a/build/build-sdk-images/restapi/Dockerfile b/build/build-sdk-images/restapi/Dockerfile index dc44d1c197..85b4d376ac 100644 --- a/build/build-sdk-images/restapi/Dockerfile +++ b/build/build-sdk-images/restapi/Dockerfile @@ -20,7 +20,7 @@ RUN apt-get update && \ # install go WORKDIR /usr/local -ENV GO_VERSION=1.14.4 +ENV GO_VERSION=1.14.12 ENV GO111MODULE=on ENV GOPATH /go RUN wget -q https://dl.google.com/go/go${GO_VERSION}.linux-amd64.tar.gz && \ diff --git a/build/e2e-image/Dockerfile b/build/e2e-image/Dockerfile index 15b8fcf5d2..1745b23c87 100644 --- a/build/e2e-image/Dockerfile +++ b/build/e2e-image/Dockerfile @@ -6,7 +6,7 @@ RUN apt-get update && \ # install go WORKDIR /usr/local -ENV GO_VERSION=1.14.4 +ENV GO_VERSION=1.14.12 ENV GOPATH /go ENV GO111MODULE=on RUN wget -q https://dl.google.com/go/go${GO_VERSION}.linux-amd64.tar.gz && \ diff --git a/examples/autoscaler-webhook/Dockerfile b/examples/autoscaler-webhook/Dockerfile index b1ae368a60..4f4c2b5106 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.14.4 as builder +FROM golang:1.14.12 as builder WORKDIR /go/src/autoscaler-webhook COPY examples/autoscaler-webhook/main.go . diff --git a/examples/crd-client/Dockerfile b/examples/crd-client/Dockerfile index da910f9d09..94f32bce42 100644 --- a/examples/crd-client/Dockerfile +++ b/examples/crd-client/Dockerfile @@ -13,7 +13,7 @@ # limitations under the License. # Gather dependencies and build the executable -FROM golang:1.14.4 as builder +FROM golang:1.14.12 as builder WORKDIR /go/src/crd-client COPY ./main.go . diff --git a/examples/simple-game-server/Dockerfile b/examples/simple-game-server/Dockerfile index d67956940e..4ce5415259 100644 --- a/examples/simple-game-server/Dockerfile +++ b/examples/simple-game-server/Dockerfile @@ -13,7 +13,7 @@ # limitations under the License. # build -FROM golang:1.14.4 as builder +FROM golang:1.14.12 as builder WORKDIR /go/src/simple-game-server COPY examples/simple-game-server/main.go . diff --git a/examples/simple-tcp/Dockerfile b/examples/simple-tcp/Dockerfile index 534e9a20d7..018aa3457c 100644 --- a/examples/simple-tcp/Dockerfile +++ b/examples/simple-tcp/Dockerfile @@ -13,7 +13,7 @@ # limitations under the License. # build -FROM golang:1.14.4 as builder +FROM golang:1.14.12 as builder WORKDIR /go/src/simple-tcp COPY examples/simple-tcp/main.go . diff --git a/examples/simple-udp/Dockerfile b/examples/simple-udp/Dockerfile index 0e83164143..1ad1e2f8b8 100644 --- a/examples/simple-udp/Dockerfile +++ b/examples/simple-udp/Dockerfile @@ -13,7 +13,7 @@ # limitations under the License. # build -FROM golang:1.14.4 as builder +FROM golang:1.14.12 as builder WORKDIR /go/src/simple-udp COPY examples/simple-udp/main.go . diff --git a/examples/supertuxkart/Dockerfile b/examples/supertuxkart/Dockerfile index e6bdb67d08..eb761bc0d0 100644 --- a/examples/supertuxkart/Dockerfile +++ b/examples/supertuxkart/Dockerfile @@ -13,7 +13,7 @@ # limitations under the License. # build go -FROM golang:1.14.4 as go-builder +FROM golang:1.14.12 as go-builder WORKDIR /go/src/supertuxkart RUN apt-get update && apt-get install -y curl tar xz-utils diff --git a/examples/xonotic/Dockerfile b/examples/xonotic/Dockerfile index b5b0fa9ddc..ccdcb88457 100644 --- a/examples/xonotic/Dockerfile +++ b/examples/xonotic/Dockerfile @@ -13,7 +13,7 @@ # limitations under the License. # build -FROM golang:1.14.4 as builder +FROM golang:1.14.12 as builder WORKDIR /go/src/xonotic RUN apt-get update && apt-get install -y unzip curl