This repository was archived by the owner on Feb 3, 2026. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -22,15 +22,15 @@ FROM chef as builder
2222COPY --from=planner /app/recipe.json recipe.json
2323RUN apt-get update && apt-get -y upgrade && apt-get install -y gcc libclang-dev pkg-config libssl-dev
2424
25- RUN --mount=type=ssh cargo chef cook --release --recipe-path recipe.json --bin transaction-submitter
25+ RUN --mount=type=ssh cargo chef cook --release --recipe-path recipe.json --bin submit_transaction
2626COPY --exclude=target . .
2727
28- RUN --mount=type=ssh cargo build --release --bin transaction-submitter
28+ RUN --mount=type=ssh cargo build --release --bin submit_transaction
2929
3030# Stage 3: Final image for running in the env
3131FROM --platform=$TARGETPLATFORM debian:bookworm-slim
3232RUN apt-get update && apt-get -y upgrade && apt-get install -y libssl-dev ca-certificates
3333
34- COPY --from=builder /app/target/release/transaction-submitter /usr/local/bin/transaction-submitter
34+ COPY --from=builder /app/target/release/submit_transaction /usr/local/bin/submit_transaction
3535
36- ENTRYPOINT [ "/usr/local/bin/transaction-submitter " ]
36+ ENTRYPOINT [ "/usr/local/bin/submit_transaction " ]
You can’t perform that action at this time.
0 commit comments