Skip to content

Commit 5ae721a

Browse files
authored
Merge pull request #595 from input-output-hk/jpraynaud/594-upgrade-cardano-node-1.35.4
Upgrade to Cardano 1.35.4
2 parents 9714e2c + 7262f62 commit 5ae721a

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

docs/root/manual/getting-started/run-signer-node.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ For more information about the **Mithril Protocol**, please refer to the [About
4444
* Read rights on the `Database` folder (`--database-path` setting of the **Cardano Node**)
4545
* Read/Write rights on the `Inter Process Communication` file (usually `CARDANO_NODE_SOCKET_PATH` env var used to launch the **Cardano Node**)
4646

47-
* Install a recent version of the [`cardano-cli`](https://hydra.iohk.io/job/Cardano/cardano-node/linux.native.cardano-cli) (version 1.35.3+)
47+
* Install a recent version of the [`cardano-cli`](https://hydra.iohk.io/job/Cardano/cardano-node/linux.native.cardano-cli) (version 1.35.4+)
4848

4949
* Install a [correctly configured](https://www.rust-lang.org/learn/get-started) Rust toolchain (latest stable version).
5050

mithril-aggregator/Dockerfile.ci

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ COPY mithril-aggregator/mithril-aggregator /app/bin/mithril-aggregator
1414
COPY mithril-aggregator/config /app/config
1515

1616
# Install cardano-cli
17-
RUN wget -nv -O cardano-bin.tar.gz https://hydra.iohk.io/build/17062577/download/1/cardano-node-1.35.2-linux.tar.gz
17+
RUN wget -nv -O cardano-bin.tar.gz https://hydra.iohk.io/build/21343721/download/1/cardano-node-1.35.4-linux.tar.gz
1818
RUN tar xzf cardano-bin.tar.gz ./cardano-cli && mv cardano-cli /app/bin
1919
RUN /app/bin/cardano-cli --version
2020
RUN rm -f cardano-bin.tar.gz

mithril-infra/assets/docker/Dockerfile.cardano

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM inputoutput/cardano-node:1.35.3
1+
FROM inputoutput/cardano-node:1.35.4
22

33
# Fix env file rights
44
# In order to be able to interact with the Cardano node trough its 'node.socket'

mithril-infra/assets/docker/docker-compose-aggregator.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ version: "3.9"
22

33
services:
44
cardano-node-aggregator:
5-
image: cardano-node/1.35.3-modified
5+
image: cardano-node/1.35.4-modified
66
container_name: cardano-node-aggregator
77
build:
88
context: .

mithril-infra/assets/docker/docker-compose-signer-unverified.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ version: "3.9"
22

33
services:
44
cardano-node-signer:
5-
image: cardano-node/1.35.3-modified
5+
image: cardano-node/1.35.4-modified
66
container_name: cardano-node-signer-${SIGNER_ID}
77
build:
88
context: .

mithril-signer/Dockerfile.ci

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ COPY mithril-signer/mithril-signer /app/bin/mithril-signer
1414
COPY mithril-signer/config /app/config
1515

1616
# Install cardano-cli
17-
RUN wget -nv -O cardano-bin.tar.gz https://hydra.iohk.io/build/17062577/download/1/cardano-node-1.35.2-linux.tar.gz
17+
RUN wget -nv -O cardano-bin.tar.gz https://hydra.iohk.io/build/21343721/download/1/cardano-node-1.35.4-linux.tar.gz
1818
RUN tar xzf cardano-bin.tar.gz ./cardano-cli && mv cardano-cli /app/bin
1919
RUN /app/bin/cardano-cli --version
2020
RUN rm -f cardano-bin.tar.gz

0 commit comments

Comments
 (0)