mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
cfe16e0d5b
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>
7 lines
320 B
Docker
7 lines
320 B
Docker
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.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"]
|