Skip to content
This repository was archived by the owner on Oct 13, 2023. It is now read-only.

Commit 680fd72

Browse files
committed
Update Golang 1.13.8
Also pinning the e2e image to the "buster" variant, which is what's currently used, but making it explicit. Signed-off-by: Sebastiaan van Stijn <github@gone.nl> (cherry picked from commit 4313c8b3c6f3702acd81aa780d87b2b6c72e9b95) Signed-off-by: Sebastiaan van Stijn <github@gone.nl> Upstream-commit: 6e07d210a4b166c3eb8a19f0ac70ed1022881e31 Component: cli
1 parent 65550b7 commit 680fd72

6 files changed

Lines changed: 7 additions & 7 deletions

File tree

components/cli/appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ clone_folder: c:\gopath\src\github.com\docker\cli
44

55
environment:
66
GOPATH: c:\gopath
7-
GOVERSION: 1.12.17
7+
GOVERSION: 1.13.8
88
DEPVERSION: v0.4.1
99

1010
install:

components/cli/dockerfiles/Dockerfile.binary-native

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
ARG GO_VERSION=1.12.17
1+
ARG GO_VERSION=1.13.8
22

33
FROM golang:${GO_VERSION}-alpine
44

components/cli/dockerfiles/Dockerfile.cross

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
ARG GO_VERSION=1.12.17
1+
ARG GO_VERSION=1.13.8
22

33
FROM dockercore/golang-cross:${GO_VERSION}
44
ENV DISABLE_WARN_OUTSIDE_CONTAINER=1

components/cli/dockerfiles/Dockerfile.dev

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
ARG GO_VERSION=1.12.17
1+
ARG GO_VERSION=1.13.8
22

33
FROM golang:${GO_VERSION}-alpine
44

components/cli/dockerfiles/Dockerfile.e2e

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
ARG GO_VERSION=1.12.17
1+
ARG GO_VERSION=1.13.8
22

33
# Use Debian based image as docker-compose requires glibc.
4-
FROM golang:${GO_VERSION}
4+
FROM golang:${GO_VERSION}-buster
55

66
RUN apt-get update && apt-get install -y \
77
build-essential \

components/cli/dockerfiles/Dockerfile.lint

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# syntax=docker/dockerfile:1.1.3-experimental
22

3-
ARG GO_VERSION=1.12.17
3+
ARG GO_VERSION=1.13.8
44
ARG GOLANGCI_LINTER_SHA="v1.21.0"
55

66
FROM golang:${GO_VERSION}-alpine AS build

0 commit comments

Comments
 (0)