diff --git a/Dockerfile b/Dockerfile index 606551368845f2f074b5771c0ca253e012e3264b..7bb5724d106697aff9cd6c5364bb1e85f11be1e5 100644 --- a/Dockerfile +++ b/Dockerfile @@ -25,7 +25,7 @@ # ARG CROSS="false" -ARG GO_VERSION=1.13.0 +ARG GO_VERSION=1.13.1 ARG DEBIAN_FRONTEND=noninteractive FROM golang:${GO_VERSION}-stretch AS base diff --git a/Dockerfile.e2e b/Dockerfile.e2e index e849ca5f4fc412d99e1af50c5d3a3752236ece70..ccb2ca5979d74f870eb3aceb6aa1bfee4f670816 100644 --- a/Dockerfile.e2e +++ b/Dockerfile.e2e @@ -1,4 +1,4 @@ -ARG GO_VERSION=1.13.0 +ARG GO_VERSION=1.13.1 FROM golang:${GO_VERSION}-alpine AS base ENV GO111MODULE=off diff --git a/Dockerfile.simple b/Dockerfile.simple index 0cdae0e884c2e82b3774ea9d4c7b41fb30387aae..559a0e7306cf712ca22cd1c41ce0cf23970eb565 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.13.0 +ARG GO_VERSION=1.13.1 FROM golang:${GO_VERSION}-stretch ENV GO111MODULE=off diff --git a/Dockerfile.windows b/Dockerfile.windows index cd1d9b5fc9b8461eab14cf1a58030405b4b8335a..52f7c4b3f4995993294327ea2e80cc407ba3c7f1 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.13.0 +ARG GO_VERSION=1.13.1 # Environment variable notes: # - GO_VERSION must be consistent with 'Dockerfile' used by Linux.