From 92a8618ddc48e0c6fe464035d618d0996a1ff266 Mon Sep 17 00:00:00 2001 From: Kir Kolyshkin Date: Mon, 28 Oct 2019 14:01:45 -0700 Subject: [PATCH] Bump golang 1.12.12 Signed-off-by: Kir Kolyshkin --- Dockerfile | 2 +- Dockerfile.e2e | 2 +- Dockerfile.simple | 2 +- Dockerfile.windows | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index f6e38cae5f..766db8a1b6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -25,7 +25,7 @@ # ARG CROSS="false" -ARG GO_VERSION=1.12.10 +ARG GO_VERSION=1.12.12 ARG DEBIAN_FRONTEND=noninteractive FROM golang:${GO_VERSION}-stretch AS base diff --git a/Dockerfile.e2e b/Dockerfile.e2e index 639e62af6d..b18b3ab35c 100644 --- a/Dockerfile.e2e +++ b/Dockerfile.e2e @@ -1,4 +1,4 @@ -ARG GO_VERSION=1.12.10 +ARG GO_VERSION=1.12.12 FROM golang:${GO_VERSION}-alpine AS base diff --git a/Dockerfile.simple b/Dockerfile.simple index 7987dec993..839675e028 100644 --- a/Dockerfile.simple +++ b/Dockerfile.simple @@ -5,7 +5,7 @@ # This represents the bare minimum required to build and test Docker. -ARG GO_VERSION=1.12.10 +ARG GO_VERSION=1.12.12 FROM golang:${GO_VERSION}-stretch diff --git a/Dockerfile.windows b/Dockerfile.windows index 6f03c17f01..4f39676f4b 100644 --- a/Dockerfile.windows +++ b/Dockerfile.windows @@ -165,7 +165,7 @@ FROM microsoft/windowsservercore # Use PowerShell as the default shell SHELL ["powershell", "-Command", "$ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue';"] -ARG GO_VERSION=1.12.10 +ARG GO_VERSION=1.12.12 # Environment variable notes: # - GO_VERSION must be consistent with 'Dockerfile' used by Linux.