Skip to content

Commit 696eecb

Browse files
authored
Merge pull request #16 from blinklabs-io/chore/update-mithril
chore: update mithril to 2347.0
2 parents 13dbef7 + a92f168 commit 696eecb

File tree

1 file changed

+4
-6
lines changed

1 file changed

+4
-6
lines changed

Dockerfile

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,14 @@
11
FROM rust:bookworm AS rustbuilder
2-
ARG MITHRIL_VERSION=2342.0
2+
ARG MITHRIL_VERSION=2347.0
33
ENV MITHRIL_VERSION=${MITHRIL_VERSION}
44
WORKDIR /code
55
RUN echo "Building tags/${MITHRIL_VERSION}..." \
6-
&& git clone https://github.com/input-output-hk/mithril.git \
6+
&& git clone https://github.com/input-output-hk/mithril.git --depth 1 -b ${MITHRIL_VERSION} \
77
&& cd mithril \
8-
&& git fetch --all --recurse-submodules --tags \
9-
&& git tag \
108
&& git checkout tags/${MITHRIL_VERSION} \
11-
&& cargo build --release -p mithril-client
9+
&& cargo build --release -p mithril-client-cli
1210

13-
FROM debian:bookworm-slim as mithrill-client
11+
FROM debian:bookworm-slim as mithril-client
1412
COPY --from=rustbuilder /code/mithril/target/release/mithril-client /bin/
1513
RUN apt-get update -y \
1614
&& apt-get install -y \

0 commit comments

Comments
 (0)