From fd374b96d308de181b93feb3ede3456704da02ec Mon Sep 17 00:00:00 2001 From: Andrea D'Intino Date: Thu, 8 Jul 2021 21:39:29 +0200 Subject: [PATCH] Added the Sawroom-wallet-tp to the Dockerimage (Dockerimage built properly) --- Dockerfile | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/Dockerfile b/Dockerfile index 7109c24..260fe74 100644 --- a/Dockerfile +++ b/Dockerfile @@ -92,6 +92,13 @@ WORKDIR /project/sawroom-storage-tp RUN cargo build --release RUN cp -v ./target/release/storage-tp /usr/local/bin +## install the sawroom-wallet-tp +WORKDIR /project +RUN git clone https://github.com/dyne/sawroom-wallet-tp +WORKDIR /project/sawroom-wallet-tp +RUN cargo build --release +RUN cp -v ./target/release/sawroom-wallet-tp /usr/local/bin + ## Sawtooth Validator RUN cd /project && \ wget https://github.com/hyperledger/sawtooth-core/archive/v$SAWTOOTH_CORE_VERSION.tar.gz \