From 5d51118c7c6399ed3002e6c19d860e89be79d160 Mon Sep 17 00:00:00 2001 From: "Brian (bex) Exelbierd" Date: Mon, 8 Jun 2015 14:30:33 +0200 Subject: [PATCH] Update man page Dockerfile to use go-md2man v1.0.1 and go-lang 1.4 The main Dockerfile to was updated - this update brings the sub-directory specific file inline with it. Fixes #12866 Signed-off-by: Brian Exelbierd --- man/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/man/Dockerfile b/man/Dockerfile index 9910bd48f9..33e515d85c 100644 --- a/man/Dockerfile +++ b/man/Dockerfile @@ -1,7 +1,7 @@ -FROM golang:1.3 +FROM golang:1.4 RUN mkdir -p /go/src/github.com/cpuguy83 RUN mkdir -p /go/src/github.com/cpuguy83 \ - && git clone -b v1 https://github.com/cpuguy83/go-md2man.git /go/src/github.com/cpuguy83/go-md2man \ + && git clone -b v1.0.1 https://github.com/cpuguy83/go-md2man.git /go/src/github.com/cpuguy83/go-md2man \ && cd /go/src/github.com/cpuguy83/go-md2man \ && go get -v ./... CMD ["/go/bin/go-md2man", "--help"]