From c2d7b5b77f14cc54e5d135574189b09c39fb1a45 Mon Sep 17 00:00:00 2001 From: Peter Jones Date: Wed, 27 Sep 2017 11:26:09 +0100 Subject: [PATCH] add "yaml" tool to docker image --- Dockerfile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Dockerfile b/Dockerfile index f82ecf2..9e908c5 100644 --- a/Dockerfile +++ b/Dockerfile @@ -76,3 +76,8 @@ RUN gem install --no-document --no-update-sources --verbose cf-uaac \ && rm -rf /usr/lib/ruby/gems/2.3.0/cache/ RUN go get github.com/EngineerBetter/stopover + +ENV YAML_VERSION=1.13.1 +RUN wget "https://github.com/mikefarah/yaml/releases/download/${YAML_VERSION}/yaml_linux_amd64" \ + && mv yaml_linux_amd64 /usr/bin/yaml \ + && chmod +x /usr/bin/yaml \ No newline at end of file