Skip to content

Commit 9e5bebb

Browse files
committed
Bump go version to 1.10.2
Signed-off-by: Brian Goff <[email protected]>
1 parent 57493cd commit 9e5bebb

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,10 @@
3232
# the case. Therefore, you don't have to disable it anymore.
3333
#
3434

35-
FROM golang:1.10.1 AS base
35+
FROM golang:1.10.2 AS base
3636
# FIXME(vdemeester) this is kept for other script depending on it to not fail right away
3737
# Remove this once the other scripts uses something else to detect the version
38-
ENV GO_VERSION 1.10.1
38+
ENV GO_VERSION 1.10.2
3939
# allow replacing httpredir or deb mirror
4040
ARG APT_MIRROR=deb.debian.org
4141
RUN sed -ri "s/(httpredir|deb).debian.org/$APT_MIRROR/g" /etc/apt/sources.list

Dockerfile.e2e

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
## Step 1: Build tests
2-
FROM golang:1.10.1-alpine3.7 as builder
2+
FROM golang:1.10.2-alpine3.7 as builder
33

44
RUN apk add --update \
55
bash \

Dockerfile.simple

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
4242
# will need updating, to avoid errors. Ping #docker-maintainers on IRC
4343
# with a heads-up.
4444
# IMPORTANT: When updating this please note that stdlib archive/tar pkg is vendored
45-
ENV GO_VERSION 1.10.1
45+
ENV GO_VERSION 1.10.2
4646
RUN curl -fsSL "https://golang.org/dl/go${GO_VERSION}.linux-amd64.tar.gz" \
4747
| tar -xzC /usr/local
4848
ENV PATH /go/bin:/usr/local/go/bin:$PATH

Dockerfile.windows

+1-1
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ SHELL ["powershell", "-Command", "$ErrorActionPreference = 'Stop'; $ProgressPref
161161
# Environment variable notes:
162162
# - GO_VERSION must be consistent with 'Dockerfile' used by Linux.
163163
# - FROM_DOCKERFILE is used for detection of building within a container.
164-
ENV GO_VERSION=1.10.1 `
164+
ENV GO_VERSION=1.10.2 `
165165
GIT_VERSION=2.11.1 `
166166
GOPATH=C:\go `
167167
FROM_DOCKERFILE=1

0 commit comments

Comments
 (0)