Skip to content

Commit e94e7f8

Browse files
committed
feat: upgrade to v2337.0
Signed-off-by: Chris Gianelloni <[email protected]>
1 parent 7d5eee8 commit e94e7f8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
FROM rust:bookworm AS rustbuilder
2-
ARG MITHRIL_VERSION=2335.0
2+
ARG MITHRIL_VERSION=2337.0
33
ENV MITHRIL_VERSION=${MITHRIL_VERSION}
44
WORKDIR /code
55
RUN echo "Building tags/${MITHRIL_VERSION}..." \
@@ -11,7 +11,7 @@ RUN echo "Building tags/${MITHRIL_VERSION}..." \
1111
&& cargo build --release -p mithril-client
1212

1313
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/
1515
RUN apt-get update -y \
1616
&& apt-get install -y \
1717
ca-certificates \
@@ -20,4 +20,4 @@ RUN apt-get update -y \
2020
sqlite3 \
2121
wget \
2222
&& rm -rf /var/lib/apt/lists/*
23-
ENTRYPOINT ["/usr/local/bin/mithril-client"]
23+
ENTRYPOINT ["/bin/mithril-client"]

0 commit comments

Comments
 (0)