From 92680a20e50182eec1d20b5b0cf0ed684ef41a7f Mon Sep 17 00:00:00 2001 From: Chris Gianelloni Date: Mon, 17 Jun 2024 14:22:46 -0400 Subject: [PATCH] feat: version bump mithril to v2423.0 (#30) Signed-off-by: Chris Gianelloni --- Dockerfile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index cf0731f..606f3e0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ FROM rust:bookworm AS rustbuilder -ARG MITHRIL_VERSION=2418.1 +ARG MITHRIL_VERSION=2423.0 ENV MITHRIL_VERSION=${MITHRIL_VERSION} WORKDIR /code RUN echo "Building tags/${MITHRIL_VERSION}..." \ @@ -8,9 +8,11 @@ RUN echo "Building tags/${MITHRIL_VERSION}..." \ && git checkout tags/${MITHRIL_VERSION} \ && cargo build --release -p mithril-client-cli +FROM ghcr.io/blinklabs-io/cardano-configs:20240515-2 as cardano-configs + FROM debian:bookworm-slim as mithril-client COPY --from=rustbuilder /code/mithril/target/release/mithril-client /bin/ -COPY config/ /opt/cardano/config/ +COPY --from=cardano-configs /config/ /opt/cardano/config/ RUN apt-get update -y \ && apt-get install -y \ ca-certificates \