File tree Expand file tree Collapse file tree 1 file changed +4
-6
lines changed Expand file tree Collapse file tree 1 file changed +4
-6
lines changed Original file line number Diff line number Diff line change 1
1
FROM rust:bookworm AS rustbuilder
2
- ARG MITHRIL_VERSION=2342 .0
2
+ ARG MITHRIL_VERSION=2347 .0
3
3
ENV MITHRIL_VERSION=${MITHRIL_VERSION}
4
4
WORKDIR /code
5
5
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} \
7
7
&& cd mithril \
8
- && git fetch --all --recurse-submodules --tags \
9
- && git tag \
10
8
&& git checkout tags/${MITHRIL_VERSION} \
11
- && cargo build --release -p mithril-client
9
+ && cargo build --release -p mithril-client-cli
12
10
13
- FROM debian:bookworm-slim as mithrill -client
11
+ FROM debian:bookworm-slim as mithril -client
14
12
COPY --from=rustbuilder /code/mithril/target/release/mithril-client /bin/
15
13
RUN apt-get update -y \
16
14
&& apt-get install -y \
You can’t perform that action at this time.
0 commit comments