Correct addition of rust-src component in Dockerfiles

This commit is contained in:
Luke Parker 2023-12-15 18:42:32 -05:00
parent d149d8a08a
commit bbad7738d9
No known key found for this signature in database
6 changed files with 12 additions and 6 deletions

View file

@ -11,7 +11,8 @@ RUN apt install -y pkg-config clang
# Dependencies for the Serai node # Dependencies for the Serai node
RUN apt install -y make protobuf-compiler 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 RUN rustup target add wasm32-unknown-unknown
# Add files for build # Add files for build

View file

@ -22,7 +22,8 @@ RUN apt install -y pkg-config clang
# Dependencies for the Serai node # Dependencies for the Serai node
RUN apt install -y make protobuf-compiler 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 RUN rustup target add wasm32-unknown-unknown
# Add files for build # Add files for build

View file

@ -22,7 +22,8 @@ RUN apt install -y pkg-config clang
# Dependencies for the Serai node # Dependencies for the Serai node
RUN apt install -y make protobuf-compiler 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 RUN rustup target add wasm32-unknown-unknown
# Add files for build # Add files for build

View file

@ -22,7 +22,8 @@ RUN apt install -y pkg-config clang
# Dependencies for the Serai node # Dependencies for the Serai node
RUN apt install -y make protobuf-compiler 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 RUN rustup target add wasm32-unknown-unknown
# Add files for build # Add files for build

View file

@ -22,7 +22,8 @@ RUN apt install -y pkg-config clang
# Dependencies for the Serai node # Dependencies for the Serai node
RUN apt install -y make protobuf-compiler 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 RUN rustup target add wasm32-unknown-unknown
# Add files for build # Add files for build

View file

@ -22,7 +22,8 @@ RUN apt install -y pkg-config clang
# Dependencies for the Serai node # Dependencies for the Serai node
RUN apt install -y make protobuf-compiler 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 RUN rustup target add wasm32-unknown-unknown
# Add files for build # Add files for build