From c4bf49630b02d48f7b2092b55fbd663e39479f61 Mon Sep 17 00:00:00 2001 From: Aleksa Sarai Date: Mon, 21 Mar 2016 21:27:05 +1100 Subject: [PATCH] Dockerfile: use Go 1.5.3 Go 1.5.2 is known to have security vulnerabilities in the standard library. As such, we should use 1.5.3. Signed-off-by: Aleksa Sarai --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 931594d..6077cb6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -10,7 +10,7 @@ RUN apt-get update && apt-get install -y \ && rm -rf /var/lib/apt/lists/* # Install Go -ENV GO_VERSION 1.5.2 +ENV GO_VERSION 1.5.3 RUN curl -sSL "https://storage.googleapis.com/golang/go${GO_VERSION}.linux-amd64.tar.gz" | tar -v -C /usr/local -xz ENV PATH /go/bin:/usr/local/go/bin:$PATH ENV GOPATH /go:/go/src/github.com/docker/containerd/vendor