From 760e5f7259748671670b659a4a6ced6fadc5dc8e 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 be3af4233..f7f3869f3 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 e58301fb8..0381473e5 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 0a669de69..5acef7cb3 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 28c3d15c1..dd54fe9c4 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 835647f36..2153b27c5 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 291b35696..c3c084274 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