Browse code

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.
https://github.com/cpuguy83/go-md2man/commit/a8f937e11314ca0b085aa7a7a5526695e3ca5b49

Signed-off-by: Akihiro Suda <suda.akihiro@lab.ntt.co.jp>
(cherry picked from commit cfe16e0d5b4bb7d1d194553f2a82cc1879d60e6b)

Akihiro Suda authored on 2016/06/23 10:57:00
Showing 6 changed files
... ...
@@ -217,7 +217,7 @@ RUN ./contrib/download-frozen-image-v2.sh /docker-frozen-images \
217 217
 # Download man page generator
218 218
 RUN set -x \
219 219
 	&& export GOPATH="$(mktemp -d)" \
220
-	&& git clone --depth 1 -b v1.0.4 https://github.com/cpuguy83/go-md2man.git "$GOPATH/src/github.com/cpuguy83/go-md2man" \
220
+	&& git clone --depth 1 -b v1.0.5 https://github.com/cpuguy83/go-md2man.git "$GOPATH/src/github.com/cpuguy83/go-md2man" \
221 221
 	&& git clone --depth 1 -b v1.4 https://github.com/russross/blackfriday.git "$GOPATH/src/github.com/russross/blackfriday" \
222 222
 	&& go get -v -d github.com/cpuguy83/go-md2man \
223 223
 	&& go build -v -o /usr/local/bin/go-md2man github.com/cpuguy83/go-md2man \
... ...
@@ -164,7 +164,7 @@ RUN ./contrib/download-frozen-image-v2.sh /docker-frozen-images \
164 164
 # Download man page generator
165 165
 RUN set -x \
166 166
 	&& export GOPATH="$(mktemp -d)" \
167
-	&& git clone --depth 1 -b v1.0.4 https://github.com/cpuguy83/go-md2man.git "$GOPATH/src/github.com/cpuguy83/go-md2man" \
167
+	&& git clone --depth 1 -b v1.0.5 https://github.com/cpuguy83/go-md2man.git "$GOPATH/src/github.com/cpuguy83/go-md2man" \
168 168
 	&& git clone --depth 1 -b v1.4 https://github.com/russross/blackfriday.git "$GOPATH/src/github.com/russross/blackfriday" \
169 169
 	&& go get -v -d github.com/cpuguy83/go-md2man \
170 170
 	&& go build -v -o /usr/local/bin/go-md2man github.com/cpuguy83/go-md2man \
... ...
@@ -173,7 +173,7 @@ RUN ./contrib/download-frozen-image-v2.sh /docker-frozen-images \
173 173
 # Download man page generator
174 174
 RUN set -x \
175 175
 	&& export GOPATH="$(mktemp -d)" \
176
-	&& git clone --depth 1 -b v1.0.4 https://github.com/cpuguy83/go-md2man.git "$GOPATH/src/github.com/cpuguy83/go-md2man" \
176
+	&& git clone --depth 1 -b v1.0.5 https://github.com/cpuguy83/go-md2man.git "$GOPATH/src/github.com/cpuguy83/go-md2man" \
177 177
 	&& git clone --depth 1 -b v1.4 https://github.com/russross/blackfriday.git "$GOPATH/src/github.com/russross/blackfriday" \
178 178
 	&& go get -v -d github.com/cpuguy83/go-md2man \
179 179
 	&& go build -v -o /usr/local/bin/go-md2man github.com/cpuguy83/go-md2man \
... ...
@@ -188,7 +188,7 @@ RUN ./contrib/download-frozen-image-v2.sh /docker-frozen-images \
188 188
 # Download man page generator
189 189
 RUN set -x \
190 190
 	&& export GOPATH="$(mktemp -d)" \
191
-	&& git clone --depth 1 -b v1.0.4 https://github.com/cpuguy83/go-md2man.git "$GOPATH/src/github.com/cpuguy83/go-md2man" \
191
+	&& git clone --depth 1 -b v1.0.5 https://github.com/cpuguy83/go-md2man.git "$GOPATH/src/github.com/cpuguy83/go-md2man" \
192 192
 	&& git clone --depth 1 -b v1.4 https://github.com/russross/blackfriday.git "$GOPATH/src/github.com/russross/blackfriday" \
193 193
 	&& go get -v -d github.com/cpuguy83/go-md2man \
194 194
 	&& go build -v -o /usr/local/bin/go-md2man github.com/cpuguy83/go-md2man \
... ...
@@ -181,7 +181,7 @@ RUN ./contrib/download-frozen-image-v2.sh /docker-frozen-images \
181 181
 # Download man page generator
182 182
 RUN set -x \
183 183
 	&& export GOPATH="$(mktemp -d)" \
184
-	&& git clone --depth 1 -b v1.0.4 https://github.com/cpuguy83/go-md2man.git "$GOPATH/src/github.com/cpuguy83/go-md2man" \
184
+	&& git clone --depth 1 -b v1.0.5 https://github.com/cpuguy83/go-md2man.git "$GOPATH/src/github.com/cpuguy83/go-md2man" \
185 185
 	&& git clone --depth 1 -b v1.4 https://github.com/russross/blackfriday.git "$GOPATH/src/github.com/russross/blackfriday" \
186 186
 	&& go get -v -d github.com/cpuguy83/go-md2man \
187 187
 	&& go build -v -o /usr/local/bin/go-md2man github.com/cpuguy83/go-md2man \
... ...
@@ -1,7 +1,7 @@
1
-FROM golang:1.4
1
+FROM golang:1.6.2
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.0.3 https://github.com/cpuguy83/go-md2man.git /go/src/github.com/cpuguy83/go-md2man \
4
+    && git clone -b v1.0.5 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"]