From 24a9986dfe75ac8299c4f49080fdf84046c9e7e8 Mon Sep 17 00:00:00 2001 From: Thomas Kammerlocher Date: Wed, 20 Nov 2024 13:57:16 +0100 Subject: [PATCH] chore: bumped mithril (#253) --- docker/Dockerfile | 7 +++++-- docker/dockerfiles/mithril/Dockerfile | 2 +- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/docker/Dockerfile b/docker/Dockerfile index 7991f2b4..c8508f26 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -31,14 +31,17 @@ RUN bash -c "ghcup set ghc ${GHC_VERSION}" # Mithril setup -ARG MITHRIL_VERSION=2423.0 +ARG MITHRIL_VERSION=2445.0 # Install dependencies RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | bash -s -- -y \ + && export PATH="$HOME/.cargo/bin:$PATH" \ && apt update --fix-missing \ && apt install -y --no-install-recommends \ - build-essential m4 libssl-dev docker jq git cargo \ + build-essential m4 libssl-dev docker jq git \ + && rustup update stable \ && apt-get clean RUN git clone https://github.com/input-output-hk/mithril.git \ + && export PATH="$HOME/.cargo/bin:$PATH" \ && cd mithril \ && git checkout $MITHRIL_VERSION \ && cd mithril-client-cli \ diff --git a/docker/dockerfiles/mithril/Dockerfile b/docker/dockerfiles/mithril/Dockerfile index 4603c5f5..62456e70 100644 --- a/docker/dockerfiles/mithril/Dockerfile +++ b/docker/dockerfiles/mithril/Dockerfile @@ -3,7 +3,7 @@ FROM ubuntu:22.04 AS cardano-builder WORKDIR /root/src # Mithril setup -ARG MITHRIL_VERSION=2423.0 +ARG MITHRIL_VERSION=2445.0 # Install dependencies RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | bash -s -- -y \ && apt update --fix-missing \