From 820742ccef16f153b13ef7a9b743e9118f81efa8 Mon Sep 17 00:00:00 2001 From: Ratan Kaliani Date: Tue, 4 Mar 2025 00:56:19 -0800 Subject: [PATCH] feat: build --- proposer/succinct/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/proposer/succinct/Dockerfile b/proposer/succinct/Dockerfile index 46b3f22f..2eb9ed2b 100644 --- a/proposer/succinct/Dockerfile +++ b/proposer/succinct/Dockerfile @@ -60,8 +60,8 @@ RUN apt-get update && apt-get install -y \ RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y ENV PATH=/root/.cargo/bin:$PATH -RUN rustup install nightly -RUN rustup default nightly +RUN rustup install stable +RUN rustup default stable # Verify Rust installation RUN rustc --version && cargo --version