Skip to content

Commit

Permalink
Correct addition of rust-src component in Dockerfiles
Browse files Browse the repository at this point in the history
  • Loading branch information
kayabaNerve committed Dec 15, 2023
1 parent 0f4de5c commit 760e5f7
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 6 deletions.
3 changes: 2 additions & 1 deletion orchestration/Dockerfile.parts/Dockerfile.serai.build
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
3 changes: 2 additions & 1 deletion orchestration/coordinator/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
3 changes: 2 additions & 1 deletion orchestration/message-queue/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
3 changes: 2 additions & 1 deletion orchestration/processor/bitcoin/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
3 changes: 2 additions & 1 deletion orchestration/processor/monero/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
3 changes: 2 additions & 1 deletion orchestration/serai/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 760e5f7

Please sign in to comment.