From 7cc77b2705259ce58b665e695634d75fe2fcf1b8 Mon Sep 17 00:00:00 2001 From: mertwole Date: Tue, 4 Mar 2025 13:03:59 +0000 Subject: [PATCH 1/2] Explicitly install toolchain --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index 843c3a7b..ce1915d8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -38,6 +38,7 @@ ENV PATH="/root/.foundry/bin:${PATH}" COPY . . # Build relayer +RUN rustup toolchain install nightly-2025-01-09-x86_64-unknown-linux-gnu RUN cargo build -p relayer --release # Compose final image From 3705c4695081ac05158dcf30b6895a7910a6d8c5 Mon Sep 17 00:00:00 2001 From: mertwole Date: Wed, 5 Mar 2025 08:07:12 +0000 Subject: [PATCH 2/2] Fix --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index ce1915d8..0edd3bbc 100644 --- a/Dockerfile +++ b/Dockerfile @@ -38,7 +38,7 @@ ENV PATH="/root/.foundry/bin:${PATH}" COPY . . # Build relayer -RUN rustup toolchain install nightly-2025-01-09-x86_64-unknown-linux-gnu +RUN rustup toolchain install RUN cargo build -p relayer --release # Compose final image