-
Notifications
You must be signed in to change notification settings - Fork 286
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(plugin-ledger-connector-iroha): running dockerfile locally
Primary Changes --------------- 1. Updated iroha package.json to include a missing dependency 2. Updated Dockerfile to include new api-server image and used yarn to install the iroha package 3. Updated README.md to include the newly changes to both the api-server as well as iroha connector plugin 4. Updated cmd-api-server README.md to include similar changes Fixes #1874 Signed-off-by: jagpreetsinghsasan <[email protected]>
- Loading branch information
1 parent
148fe80
commit f5faaab
Showing
4 changed files
with
39 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,7 @@ | ||
FROM ghcr.io/hyperledger/cactus-cmd-api-server:2021-08-15--refactor-1222 | ||
FROM ghcr.io/hyperledger/cactus-cmd-api-server:2022-11-14-6ff6aac | ||
RUN npm install -g [email protected] | ||
|
||
ENV NODE_ENV=production | ||
ARG NPM_PKG_VERSION=latest | ||
|
||
RUN npm i @hyperledger/cactus-plugin-ledger-connector-iroha@${NPM_PKG_VERSION} --production | ||
RUN yarn add @hyperledger/cactus-plugin-ledger-connector-iroha@${NPM_PKG_VERSION} --production --ignore-engines |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters