Skip to content

Commit 589bafd

Browse files
committed
bump Go to 1.6.3
following the announcement; https://groups.google.com/forum/m/#!topic/golang-announce/7JTsd70ZAT0 > [security] Go 1.6.3 and Go 1.7rc2 pre-announcement > > Hello gophers, > We plan to issue Go 1.6.3 and Go 1.7rc2 on Monday July 18 at approximately 2am UTC. > These are minor release to fix a security issue. > > Following our policy at https://golang.org/security, this is the pre-announcement of those releases. > > Because we are so late in the release cycle for Go 1.7, we will not issue a minor release of Go 1.5. > Additionally, we plan to issue Go 1.7rc3 later next week, which will include any changes between 1.7rc1 and tip. > > Cheers, > Chris on behalf of the Go team **Note:** the man/Dockerfile is not yet updated, because the official image for Go 1.6.2 has not yet been updated. Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
1 parent e7b9610 commit 589bafd

File tree

27 files changed

+28
-27
lines changed

27 files changed

+28
-27
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ RUN set -x \
120120
# IMPORTANT: If the version of Go is updated, the Windows to Linux CI machines
121121
# will need updating, to avoid errors. Ping #docker-maintainers on IRC
122122
# with a heads-up.
123-
ENV GO_VERSION 1.6.2
123+
ENV GO_VERSION 1.6.3
124124
RUN curl -fsSL "https://storage.googleapis.com/golang/go${GO_VERSION}.linux-amd64.tar.gz" \
125125
| tar -xzC /usr/local
126126

Dockerfile.aarch64

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ RUN set -x \
100100
# so we use gccgo as bootstrap to build Go from source code.
101101
# We don't use the official ARMv6 released binaries as a GOROOT_BOOTSTRAP, because
102102
# not all ARM64 platforms support 32-bit mode. 32-bit mode is optional for ARMv8.
103-
ENV GO_VERSION 1.6.2
103+
ENV GO_VERSION 1.6.3
104104
RUN mkdir /usr/src/go && curl -fsSL https://storage.googleapis.com/golang/go${GO_VERSION}.src.tar.gz | tar -v -C /usr/src/go -xz --strip-components=1 \
105105
&& cd /usr/src/go/src \
106106
&& GOOS=linux GOARCH=arm64 GOROOT_BOOTSTRAP="$(go env GOROOT)" ./make.bash

Dockerfile.armhf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ RUN cd /usr/local/lvm2 \
6565
# see https://git.fedorahosted.org/cgit/lvm2.git/tree/INSTALL
6666

6767
# Install Go
68-
ENV GO_VERSION 1.6.2
68+
ENV GO_VERSION 1.6.3
6969
RUN curl -fsSL "https://storage.googleapis.com/golang/go${GO_VERSION}.linux-armv6l.tar.gz" \
7070
| tar -xzC /usr/local
7171
ENV PATH /go/bin:/usr/local/go/bin:$PATH

Dockerfile.ppc64le

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ RUN set -x \
8989

9090
## BUILD GOLANG 1.6
9191
# NOTE: ppc64le has compatibility issues with older versions of go, so make sure the version >= 1.6
92-
ENV GO_VERSION 1.6.2
92+
ENV GO_VERSION 1.6.3
9393
ENV GO_DOWNLOAD_URL https://golang.org/dl/go${GO_VERSION}.src.tar.gz
9494
ENV GOROOT_BOOTSTRAP /usr/local
9595

Dockerfile.simple

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ RUN set -x \
4949
# IMPORTANT: If the version of Go is updated, the Windows to Linux CI machines
5050
# will need updating, to avoid errors. Ping #docker-maintainers on IRC
5151
# with a heads-up.
52-
ENV GO_VERSION 1.6.2
52+
ENV GO_VERSION 1.6.3
5353
RUN curl -fsSL "https://storage.googleapis.com/golang/go${GO_VERSION}.linux-amd64.tar.gz" \
5454
| tar -xzC /usr/local
5555
ENV PATH /go/bin:/usr/local/go/bin:$PATH

Dockerfile.windows

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ FROM windowsservercore
3434
# Environment variable notes:
3535
# - GO_VERSION must consistent with 'Dockerfile' used by Linux'.
3636
# - FROM_DOCKERFILE is used for detection of building within a container.
37-
ENV GO_VERSION=1.6.2 \
37+
ENV GO_VERSION=1.6.3 \
3838
GIT_LOCATION=https://github.com/git-for-windows/git/releases/download/v2.7.2.windows.1/Git-2.7.2-64-bit.exe \
3939
GOPATH=C:/go;C:/go/src/github.com/docker/docker/vendor \
4040
FROM_DOCKERFILE=1

contrib/builder/deb/amd64/debian-jessie/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ RUN sed -i s/httpredir.debian.org/$APT_MIRROR/g /etc/apt/sources.list
1010

1111
RUN apt-get update && apt-get install -y apparmor bash-completion btrfs-tools build-essential curl ca-certificates debhelper dh-apparmor dh-systemd git libapparmor-dev libdevmapper-dev libltdl-dev libsqlite3-dev pkg-config libsystemd-journal-dev --no-install-recommends && rm -rf /var/lib/apt/lists/*
1212

13-
ENV GO_VERSION 1.6.2
13+
ENV GO_VERSION 1.6.3
1414
RUN curl -fSL "https://storage.googleapis.com/golang/go${GO_VERSION}.linux-amd64.tar.gz" | tar xzC /usr/local
1515
ENV PATH $PATH:/usr/local/go/bin
1616

contrib/builder/deb/amd64/debian-stretch/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ RUN sed -i s/httpredir.debian.org/$APT_MIRROR/g /etc/apt/sources.list
1010

1111
RUN apt-get update && apt-get install -y apparmor bash-completion btrfs-tools build-essential curl ca-certificates debhelper dh-apparmor dh-systemd git libapparmor-dev libdevmapper-dev libltdl-dev libseccomp-dev libsqlite3-dev pkg-config libsystemd-dev --no-install-recommends && rm -rf /var/lib/apt/lists/*
1212

13-
ENV GO_VERSION 1.6.2
13+
ENV GO_VERSION 1.6.3
1414
RUN curl -fSL "https://storage.googleapis.com/golang/go${GO_VERSION}.linux-amd64.tar.gz" | tar xzC /usr/local
1515
ENV PATH $PATH:/usr/local/go/bin
1616

contrib/builder/deb/amd64/debian-wheezy/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ RUN sed -i s/httpredir.debian.org/$APT_MIRROR/g /etc/apt/sources.list.d/backport
1212
RUN apt-get update && apt-get install -y -t wheezy-backports btrfs-tools --no-install-recommends && rm -rf /var/lib/apt/lists/*
1313
RUN apt-get update && apt-get install -y apparmor bash-completion build-essential curl ca-certificates debhelper dh-apparmor dh-systemd git libapparmor-dev libdevmapper-dev libltdl-dev libsqlite3-dev pkg-config --no-install-recommends && rm -rf /var/lib/apt/lists/*
1414

15-
ENV GO_VERSION 1.6.2
15+
ENV GO_VERSION 1.6.3
1616
RUN curl -fSL "https://storage.googleapis.com/golang/go${GO_VERSION}.linux-amd64.tar.gz" | tar xzC /usr/local
1717
ENV PATH $PATH:/usr/local/go/bin
1818

contrib/builder/deb/amd64/ubuntu-precise/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ FROM ubuntu:precise
66

77
RUN apt-get update && apt-get install -y apparmor bash-completion build-essential curl ca-certificates debhelper dh-apparmor git libapparmor-dev libltdl-dev libsqlite3-dev pkg-config --no-install-recommends && rm -rf /var/lib/apt/lists/*
88

9-
ENV GO_VERSION 1.6.2
9+
ENV GO_VERSION 1.6.3
1010
RUN curl -fSL "https://storage.googleapis.com/golang/go${GO_VERSION}.linux-amd64.tar.gz" | tar xzC /usr/local
1111
ENV PATH $PATH:/usr/local/go/bin
1212

0 commit comments

Comments
 (0)