We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8e46809 commit 7add8d9Copy full SHA for 7add8d9
Dockerfile
@@ -1,12 +1,12 @@
1
FROM rust:bookworm AS rustbuilder
2
-ARG MITHRIL_VERSION=2412.0
+ARG MITHRIL_VERSION=2418.1
3
ENV MITHRIL_VERSION=${MITHRIL_VERSION}
4
WORKDIR /code
5
RUN echo "Building tags/${MITHRIL_VERSION}..." \
6
&& git clone https://github.com/input-output-hk/mithril.git --depth 1 -b ${MITHRIL_VERSION} \
7
&& cd mithril \
8
&& git checkout tags/${MITHRIL_VERSION} \
9
- && cargo build --features portable --release -p mithril-client-cli
+ && cargo build --release -p mithril-client-cli
10
11
FROM debian:bookworm-slim as mithril-client
12
COPY --from=rustbuilder /code/mithril/target/release/mithril-client /bin/
0 commit comments