Browse code

Add note in dockerfile about go version

Signed-off-by: John Howard <jhoward@microsoft.com>

John Howard authored on 2016/01/15 05:20:19
Showing 1 changed files
... ...
@@ -87,6 +87,9 @@ RUN cd /usr/local/lvm2 \
87 87
 # see https://git.fedorahosted.org/cgit/lvm2.git/tree/INSTALL
88 88
 
89 89
 # Install Go
90
+# IMPORTANT: If the version of Go is updated, the Windows to Linux CI machines
91
+#            will need updating, to avoid errors. Ping #docker-maintainers on IRC 
92
+#            with a heads-up.
90 93
 ENV GO_VERSION 1.5.3
91 94
 RUN curl -fsSL "https://storage.googleapis.com/golang/go${GO_VERSION}.linux-amd64.tar.gz" \
92 95
 	| tar -xzC /usr/local