|
@@ -155,6 +155,10 @@ RUN set -x \
|
|
&& git clone -b v1.2 https://github.com/russross/blackfriday.git /go/src/github.com/russross/blackfriday \
|
|
&& git clone -b v1.2 https://github.com/russross/blackfriday.git /go/src/github.com/russross/blackfriday \
|
|
&& go install -v github.com/cpuguy83/go-md2man
|
|
&& go install -v github.com/cpuguy83/go-md2man
|
|
|
|
|
|
|
|
+# install toml validator
|
|
|
|
+RUN git clone -b v0.1.0 https://github.com/BurntSushi/toml.git /go/src/github.com/BurntSushi/toml \
|
|
|
|
+ && go install -v github.com/BurntSushi/toml/cmd/tomlv
|
|
|
|
+
|
|
# Wrap all commands in the "docker-in-docker" script to allow nested containers
|
|
# Wrap all commands in the "docker-in-docker" script to allow nested containers
|
|
ENTRYPOINT ["hack/dind"]
|
|
ENTRYPOINT ["hack/dind"]
|
|
|
|
|