mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
eacae64bd8
Adding in other areas per comments Updating with comments; equalizing generating man page info Updating with duglin's comments Doug is right here again;fixing. Signed-off-by: Mary Anthony <mary@docker.com>
7 lines
314 B
Docker
7 lines
314 B
Docker
FROM golang:1.3
|
|
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 \
|
|
&& cd /go/src/github.com/cpuguy83/go-md2man \
|
|
&& go get -v ./...
|
|
CMD ["/go/bin/go-md2man", "--help"]
|