Browse code

Update man page Dockerfile to use go-md2man v1.0.1 and go-lang 1.4

The main Dockerfile to was updated - this update brings the
sub-directory specific file inline with it.

Fixes #12866

Signed-off-by: Brian Exelbierd <bex@pobox.com>
(cherry picked from commit 5d51118c7c6399ed3002e6c19d860e89be79d160)

Brian (bex) Exelbierd authored on 2015/06/08 21:30:33
Showing 1 changed files
... ...
@@ -1,7 +1,7 @@
1
-FROM golang:1.3
1
+FROM golang:1.4
2 2
 RUN mkdir -p /go/src/github.com/cpuguy83
3 3
 RUN mkdir -p /go/src/github.com/cpuguy83 \
4
-    && git clone -b v1 https://github.com/cpuguy83/go-md2man.git /go/src/github.com/cpuguy83/go-md2man \
4
+    && git clone -b v1.0.1 https://github.com/cpuguy83/go-md2man.git /go/src/github.com/cpuguy83/go-md2man \
5 5
     && cd /go/src/github.com/cpuguy83/go-md2man \
6 6
     && go get -v ./...
7 7
 CMD ["/go/bin/go-md2man", "--help"]