From bbad7738d9604161d5cc297f69ed40576f28e7d3 Mon Sep 17 00:00:00 2001 From: Luke Parker Date: Fri, 15 Dec 2023 18:42:32 -0500 Subject: [PATCH] Correct addition of rust-src component in Dockerfiles --- orchestration/Dockerfile.parts/Dockerfile.serai.build | 3 ++- orchestration/coordinator/Dockerfile | 3 ++- orchestration/message-queue/Dockerfile | 3 ++- orchestration/processor/bitcoin/Dockerfile | 3 ++- orchestration/processor/monero/Dockerfile | 3 ++- orchestration/serai/Dockerfile | 3 ++- 6 files changed, 12 insertions(+), 6 deletions(-) diff --git a/orchestration/Dockerfile.parts/Dockerfile.serai.build b/orchestration/Dockerfile.parts/Dockerfile.serai.build index be3af423..f7f3869f 100644 --- a/orchestration/Dockerfile.parts/Dockerfile.serai.build +++ b/orchestration/Dockerfile.parts/Dockerfile.serai.build @@ -11,7 +11,8 @@ RUN apt install -y pkg-config clang # Dependencies for the Serai node RUN apt install -y make protobuf-compiler -# Add the wasm toolchain +# Add the std src and wasm toolchain +RUN rustup component add rust-src RUN rustup target add wasm32-unknown-unknown # Add files for build diff --git a/orchestration/coordinator/Dockerfile b/orchestration/coordinator/Dockerfile index ff368cd2..1bac1d13 100644 --- a/orchestration/coordinator/Dockerfile +++ b/orchestration/coordinator/Dockerfile @@ -22,7 +22,8 @@ RUN apt install -y pkg-config clang # Dependencies for the Serai node RUN apt install -y make protobuf-compiler -# Add the wasm toolchain +# Add the std src and wasm toolchain +RUN rustup component add rust-src RUN rustup target add wasm32-unknown-unknown # Add files for build diff --git a/orchestration/message-queue/Dockerfile b/orchestration/message-queue/Dockerfile index 0a669de6..5acef7cb 100644 --- a/orchestration/message-queue/Dockerfile +++ b/orchestration/message-queue/Dockerfile @@ -22,7 +22,8 @@ RUN apt install -y pkg-config clang # Dependencies for the Serai node RUN apt install -y make protobuf-compiler -# Add the wasm toolchain +# Add the std src and wasm toolchain +RUN rustup component add rust-src RUN rustup target add wasm32-unknown-unknown # Add files for build diff --git a/orchestration/processor/bitcoin/Dockerfile b/orchestration/processor/bitcoin/Dockerfile index 5e77e473..3b43582a 100644 --- a/orchestration/processor/bitcoin/Dockerfile +++ b/orchestration/processor/bitcoin/Dockerfile @@ -22,7 +22,8 @@ RUN apt install -y pkg-config clang # Dependencies for the Serai node RUN apt install -y make protobuf-compiler -# Add the wasm toolchain +# Add the std src and wasm toolchain +RUN rustup component add rust-src RUN rustup target add wasm32-unknown-unknown # Add files for build diff --git a/orchestration/processor/monero/Dockerfile b/orchestration/processor/monero/Dockerfile index 63d83bd2..96608e9a 100644 --- a/orchestration/processor/monero/Dockerfile +++ b/orchestration/processor/monero/Dockerfile @@ -22,7 +22,8 @@ RUN apt install -y pkg-config clang # Dependencies for the Serai node RUN apt install -y make protobuf-compiler -# Add the wasm toolchain +# Add the std src and wasm toolchain +RUN rustup component add rust-src RUN rustup target add wasm32-unknown-unknown # Add files for build diff --git a/orchestration/serai/Dockerfile b/orchestration/serai/Dockerfile index 291b3569..c3c08427 100644 --- a/orchestration/serai/Dockerfile +++ b/orchestration/serai/Dockerfile @@ -22,7 +22,8 @@ RUN apt install -y pkg-config clang # Dependencies for the Serai node RUN apt install -y make protobuf-compiler -# Add the wasm toolchain +# Add the std src and wasm toolchain +RUN rustup component add rust-src RUN rustup target add wasm32-unknown-unknown # Add files for build