Skip to content

Commit 8c89e77

Browse files
authored
fix: no longer x86 (#66)
we're no longer x86
1 parent a7376d9 commit 8c89e77

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

transaction-submitter.Dockerfile

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,6 @@ RUN cargo chef prepare
2121
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
24-
RUN rustup target add x86_64-unknown-linux-gnu
25-
RUN rustup toolchain install stable-x86_64-unknown-linux-gnu
2624

2725
RUN --mount=type=ssh cargo chef cook --release --recipe-path recipe.json --bin transaction-submitter
2826
COPY --exclude=target . .
@@ -35,4 +33,4 @@ RUN apt-get update && apt-get -y upgrade && apt-get install -y libssl-dev ca-cer
3533

3634
COPY --from=builder /app/target/release/transaction-submitter /usr/local/bin/transaction-submitter
3735

38-
ENTRYPOINT [ "/usr/local/bin/transaction-submitter" ]
36+
ENTRYPOINT [ "/usr/local/bin/transaction-submitter" ]

0 commit comments

Comments
 (0)