From 723244d442c2cbad1869b80b5d51c12ca6f8ae29 Mon Sep 17 00:00:00 2001 From: lquintai <54178486+lquintai@users.noreply.github.com> Date: Mon, 8 Feb 2021 11:40:58 +0000 Subject: [PATCH] Update fabric images to 2.2.2 (#75) Signed-off-by: Leonor Quintais Co-authored-by: Simon Stone --- Dockerfile | 2 +- azure-pipelines.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index ac58370..1857593 100644 --- a/Dockerfile +++ b/Dockerfile @@ -40,7 +40,7 @@ RUN curl -sSL -o /tmp/gradle.zip https://services.gradle.org/distributions/gradl ENV PATH=/opt/gradle/bin:/opt/maven/bin:${PATH} ADD builders/java/pom.xml /opt/fabric-chaincode-java/ RUN mkdir -p /opt/fabric \ - && curl -sSL https://github.com/hyperledger/fabric/releases/download/v2.2.1/hyperledger-fabric-linux-amd64-2.2.1.tar.gz | tar xzf - -C /opt/fabric \ + && curl -sSL https://github.com/hyperledger/fabric/releases/download/v2.2.2/hyperledger-fabric-linux-amd64-2.2.2.tar.gz | tar xzf - -C /opt/fabric \ && curl -sSL https://github.com/hyperledger/fabric-ca/releases/download/v1.4.9/hyperledger-fabric-ca-linux-amd64-1.4.9.tar.gz | tar xzf - -C /opt/fabric \ && cd /opt/fabric-chaincode-java \ && mvn -q dependency:copy-dependencies -DoutputDirectory=/opt/fabric-chaincode-java/lib \ diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 7e6eac4..3640e47 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -41,7 +41,7 @@ steps: - script: | set -euo pipefail sudo mkdir -p /opt/fabric - curl -sSL https://github.com/hyperledger/fabric/releases/download/v2.2.1/hyperledger-fabric-linux-amd64-2.2.1.tar.gz | sudo tar xzf - -C /opt/fabric + curl -sSL https://github.com/hyperledger/fabric/releases/download/v2.2.2/hyperledger-fabric-linux-amd64-2.2.2.tar.gz | sudo tar xzf - -C /opt/fabric curl -sSL https://github.com/hyperledger/fabric-ca/releases/download/v1.4.9/hyperledger-fabric-ca-linux-amd64-1.4.9.tar.gz | sudo tar xzf - -C /opt/fabric cd builders/java sudo mvn -q dependency:copy-dependencies -DoutputDirectory=/opt/fabric-chaincode-java/lib