From 79e8ca04f5764c150b61b1b05785fb3926613fa1 Mon Sep 17 00:00:00 2001 From: Brian Goff Date: Tue, 27 Jan 2015 09:33:42 -0500 Subject: [PATCH] Update go-md2man Update fixes some rendering issues, including improperly escaping '$' in blocks, and actual parsing of blockcode. `ID=$(sudo docker run -d fedora /usr/bin/top -b)` was being converted to `ID=do docker run -d fedora/usr/bin/top -b)` Signed-off-by: Brian Goff --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 50920945e2..67b9ea1690 100644 --- a/Dockerfile +++ b/Dockerfile @@ -151,7 +151,7 @@ ENV DOCKER_BUILDTAGS apparmor selinux btrfs_noversion COPY vendor /go/src/github.com/docker/docker/vendor # (copy vendor/ because go-md2man needs golang.org/x/net) RUN set -x \ - && 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 \ && git clone -b v1.2 https://github.com/russross/blackfriday.git /go/src/github.com/russross/blackfriday \ && go install -v github.com/cpuguy83/go-md2man