-
Notifications
You must be signed in to change notification settings - Fork 288
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci(containerization): build all container images via the CI suite #942
This will get us closer to the desired state of affairs where any source code change that breaks the build can be detected prior to the pull request getting merged. Before this, the issue was that DockerHub would not integrate properly with the GitHub PR Checks mechanism and so we were unable to have the checks executed properly. Also: Fixes the missing publish config section of the carbon accounting example's back-end package. Fixes #942 Signed-off-by: Peter Somogyvari <peter.somogyvari@accenture.com>
- Loading branch information
Showing
6 changed files
with
135 additions
and
63 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
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
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,6 +1,8 @@ | ||
FROM cactus-api-server:latest | ||
FROM ghcr.io/hyperledger/cactus-cmd-api-server:2021-08-15--refactor-1222 | ||
|
||
RUN npm install -g yarn@1.18.0 | ||
|
||
ENV NODE_ENV=production | ||
ARG NPM_PKG_VERSION=latest | ||
|
||
RUN yarn add @hyperledger/cactus-plugin-ledger-connector-besu@${NPM_PKG_VERSION} --production | ||
RUN yarn add @hyperledger/cactus-plugin-ledger-connector-besu@${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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,7 @@ | ||
FROM cactus-api-server:latest | ||
FROM ghcr.io/hyperledger/cactus-cmd-api-server:2021-08-15--refactor-1222 | ||
|
||
RUN npm install -g yarn@1.18.0 | ||
|
||
ARG NPM_PKG_VERSION=latest | ||
|
||
RUN yarn add @hyperledger/cactus-plugin-ledger-connector-fabric@${NPM_PKG_VERSION} --production | ||
RUN yarn add @hyperledger/cactus-plugin-ledger-connector-fabric@${NPM_PKG_VERSION} --production --ignore-engines |