From c65b634f2df8fede38c32352f6c6c8545d4c90f6 Mon Sep 17 00:00:00 2001 From: Anil Ambati Date: Thu, 21 Sep 2017 15:48:40 -0400 Subject: [PATCH] [FAB-6050] Added jq to fabric-ca-tools container Added jq (https://stedolan.github.io/jq/) to the fabric-ca-tools container. It will be used by the fabric-ca sample to parse and update config JSON. Change-Id: I5ebd75d1777f189a363a65d6857ec9e28dac1d52 Signed-off-by: Anil Ambati --- images/fabric-ca-tools/Dockerfile.in | 2 ++ 1 file changed, 2 insertions(+) diff --git a/images/fabric-ca-tools/Dockerfile.in b/images/fabric-ca-tools/Dockerfile.in index a6c3daf8f..a3d8052ff 100644 --- a/images/fabric-ca-tools/Dockerfile.in +++ b/images/fabric-ca-tools/Dockerfile.in @@ -6,3 +6,5 @@ FROM hyperledger/fabric-tools:_FABRIC_TAG_ COPY payload/fabric-ca-client /usr/local/bin RUN chmod +x /usr/local/bin/fabric-ca-client +RUN apt-get update +RUN apt-get -y install jq