diff options
Diffstat (limited to 'Dockerfile.CentOS')
-rw-r--r-- | Dockerfile.CentOS | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Dockerfile.CentOS b/Dockerfile.CentOS index 5eea63e68..ccd4fd154 100644 --- a/Dockerfile.CentOS +++ b/Dockerfile.CentOS @@ -61,6 +61,12 @@ RUN set -x \ && export GOPATH=/go \ && go get github.com/onsi/gomega/... +# Install ffjson +RUN set -x \ + && export GOPATH=/go \ + && go get github.com/pquerna/ffjson \ + && install -D -m 755 "$GOPATH"/bin/ffjson /usr/bin/ + # Install conmon ENV CRIO_COMMIT 662dbb31b5d4f5ed54511a47cde7190c61c28677 RUN set -x \ |