From 6842c906c44fefeb3ca78aae550e64341e040391 Mon Sep 17 00:00:00 2001 From: Jessica Frazelle Date: Tue, 1 Dec 2015 15:23:33 -0800 Subject: [PATCH] update go-md2man because code.google.com needs to go away Signed-off-by: Jessica Frazelle --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 29f4f440d2..9a4ca9cbdc 100644 --- a/Dockerfile +++ b/Dockerfile @@ -186,8 +186,8 @@ RUN ./contrib/download-frozen-image-v2.sh /docker-frozen-images \ # Download man page generator RUN set -x \ && export GOPATH="$(mktemp -d)" \ - && git clone -b v1.0.3 https://github.com/cpuguy83/go-md2man.git "$GOPATH/src/github.com/cpuguy83/go-md2man" \ - && git clone -b v1.2 https://github.com/russross/blackfriday.git "$GOPATH/src/github.com/russross/blackfriday" \ + && git clone -b v1.0.4 https://github.com/cpuguy83/go-md2man.git "$GOPATH/src/github.com/cpuguy83/go-md2man" \ + && git clone -b v1.4 https://github.com/russross/blackfriday.git "$GOPATH/src/github.com/russross/blackfriday" \ && go get -v -d github.com/cpuguy83/go-md2man \ && go build -v -o /usr/local/bin/go-md2man github.com/cpuguy83/go-md2man \ && rm -rf "$GOPATH"