Skip to content
This repository was archived by the owner on Feb 3, 2026. It is now read-only.

Commit 449a446

Browse files
authored
fix: dockerfile bin name (#27)
1 parent 5948b44 commit 449a446

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

transaction-submitter.Dockerfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,15 +22,15 @@ FROM chef as builder
2222
COPY --from=planner /app/recipe.json recipe.json
2323
RUN 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
2626
COPY --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
3131
FROM --platform=$TARGETPLATFORM debian:bookworm-slim
3232
RUN 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" ]

0 commit comments

Comments
 (0)