File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 1
1
FROM rust:bookworm AS rustbuilder
2
- ARG MITHRIL_VERSION=2335 .0
2
+ ARG MITHRIL_VERSION=2337 .0
3
3
ENV MITHRIL_VERSION=${MITHRIL_VERSION}
4
4
WORKDIR /code
5
5
RUN echo "Building tags/${MITHRIL_VERSION}..." \
@@ -11,7 +11,7 @@ RUN echo "Building tags/${MITHRIL_VERSION}..." \
11
11
&& cargo build --release -p mithril-client
12
12
13
13
FROM debian:bookworm-slim as mithrill-client
14
- COPY --from=rustbuilder /code/mithril/target/release/mithril-client /usr/local/ bin/
14
+ COPY --from=rustbuilder /code/mithril/target/release/mithril-client /bin/
15
15
RUN apt-get update -y \
16
16
&& apt-get install -y \
17
17
ca-certificates \
@@ -20,4 +20,4 @@ RUN apt-get update -y \
20
20
sqlite3 \
21
21
wget \
22
22
&& rm -rf /var/lib/apt/lists/*
23
- ENTRYPOINT ["/usr/local/ bin/mithril-client" ]
23
+ ENTRYPOINT ["/bin/mithril-client" ]
You can’t perform that action at this time.
0 commit comments