Bump Golang version 1.13.0

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
This commit is contained in:
Sebastiaan van Stijn 2019-07-17 14:37:56 +02:00
parent 961119db21
commit 38e4ae3bca
No known key found for this signature in database
GPG key ID: 76698F39D527CE8C
4 changed files with 4 additions and 4 deletions

View file

@ -25,7 +25,7 @@
#
ARG CROSS="false"
ARG GO_VERSION=1.12.9
ARG GO_VERSION=1.13.0
ARG DEBIAN_FRONTEND=noninteractive
FROM golang:${GO_VERSION}-stretch AS base

View file

@ -1,4 +1,4 @@
ARG GO_VERSION=1.12.9
ARG GO_VERSION=1.13.0
FROM golang:${GO_VERSION}-alpine AS base
ENV GO111MODULE=off

View file

@ -5,7 +5,7 @@
# This represents the bare minimum required to build and test Docker.
ARG GO_VERSION=1.12.9
ARG GO_VERSION=1.13.0
FROM golang:${GO_VERSION}-stretch
ENV GO111MODULE=off

View file

@ -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.9
ARG GO_VERSION=1.13.0
# Environment variable notes:
# - GO_VERSION must be consistent with 'Dockerfile' used by Linux.