1
0
mirror of https://github.com/docker/cli.git synced 2026-01-13 18:22:35 +03:00

update go-md2man to v1.0.5

Due to the issue of go-md2man, a numbered list in `man docker login` was not rendered correctly.
a8f937e113

Signed-off-by: Akihiro Suda <suda.akihiro@lab.ntt.co.jp>
This commit is contained in:
Akihiro Suda
2016-06-23 01:57:00 +00:00
committed by Tibor Vass
parent beb09f42d6
commit e483efc219

View File

@@ -1,7 +1,7 @@
FROM golang:1.4
FROM golang:1.6.2
RUN mkdir -p /go/src/github.com/cpuguy83
RUN mkdir -p /go/src/github.com/cpuguy83 \
&& git clone -b v1.0.3 https://github.com/cpuguy83/go-md2man.git /go/src/github.com/cpuguy83/go-md2man \
&& git clone -b v1.0.5 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"]