go1.11.4 (released 2018/12/14) includes fixes to cgo, the compiler, linker,
runtime, documentation, go command, and the net/http and go/types packages. It
includes a fix to a bug introduced in Go 1.11.3 that broke go get for import
path patterns containing "...".
See the Go 1.11.4 milestone for details:
https://github.com/golang/go/issues?q=milestone%3AGo1.11.4+label%3ACherryPickApproved
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
| ... | ... |
@@ -24,7 +24,7 @@ |
| 24 | 24 |
# the case. Therefore, you don't have to disable it anymore. |
| 25 | 25 |
# |
| 26 | 26 |
|
| 27 |
-FROM golang:1.11.3 AS base |
|
| 27 |
+FROM golang:1.11.4 AS base |
|
| 28 | 28 |
# allow replacing httpredir or deb mirror |
| 29 | 29 |
ARG APT_MIRROR=deb.debian.org |
| 30 | 30 |
RUN sed -ri "s/(httpredir|deb).debian.org/$APT_MIRROR/g" /etc/apt/sources.list |
| ... | ... |
@@ -161,7 +161,7 @@ SHELL ["powershell", "-Command", "$ErrorActionPreference = 'Stop'; $ProgressPref |
| 161 | 161 |
# Environment variable notes: |
| 162 | 162 |
# - GO_VERSION must be consistent with 'Dockerfile' used by Linux. |
| 163 | 163 |
# - FROM_DOCKERFILE is used for detection of building within a container. |
| 164 |
-ENV GO_VERSION=1.11.3 ` |
|
| 164 |
+ENV GO_VERSION=1.11.4 ` |
|
| 165 | 165 |
GIT_VERSION=2.11.1 ` |
| 166 | 166 |
GOPATH=C:\go ` |
| 167 | 167 |
FROM_DOCKERFILE=1 |