Skip to content
This repository was archived by the owner on Mar 24, 2026. It is now read-only.

Commit 32478bc

Browse files
authored
[rust] No latest version as is not permitted (#10777)
* [rust] No ltest version * Less verbose compile
1 parent 4cdb56c commit 32478bc

5 files changed

Lines changed: 14 additions & 13 deletions

File tree

frameworks/Rust/saphir/saphir.dockerfile

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
1-
FROM rust:latest
1+
FROM rust:1.93
22

33
WORKDIR /saphir
4-
5-
ADD . .
4+
COPY . .
65

76
RUN cargo clean
8-
RUN RUSTFLAGS="-C target-cpu=native" cargo build --release
7+
RUN RUSTFLAGS="-C target-cpu=native" cargo build --release --quiet
98

109
EXPOSE 8080
1110

frameworks/Rust/sib/sib.dockerfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
FROM rust:latest
1+
FROM rust:1.93
22

3-
ADD ./ /sib
43
WORKDIR /sib
4+
COPY . .
55

6-
RUN apt-get update && apt-get install -y cmake clang lld llvm libclang-dev
6+
RUN apt-get update && apt-get install -y cmake clang lld llvm libclang-dev > /dev/null
77
RUN cargo clean
8-
RUN RUSTFLAGS="-C target-cpu=native" cargo build --release
8+
RUN RUSTFLAGS="-C target-cpu=native" cargo build --release --quiet
99

1010
EXPOSE 8080
1111

frameworks/Rust/tachyon-concept/tachyon-concept-ub.dockerfile

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
1-
FROM rust:latest
1+
FROM rust:1.93
22
ENV DEBIAN_FRONTEND=noninteractive
3+
34
WORKDIR /app
4-
RUN rustup install nightly
5+
56
RUN git clone https://github.com/TachyonConcepts/TachyonConcept .
67
RUN RUSTFLAGS="-C target-cpu=native -C opt-level=3 -C target-feature=+avx2,+bmi2" cargo install --path .
78
RUN cargo clean

frameworks/Rust/tachyon-concept/tachyon-concept.dockerfile

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
1-
FROM rust:latest
1+
FROM rust:1.93
22
ENV DEBIAN_FRONTEND=noninteractive
3+
34
WORKDIR /app
4-
RUN rustup install nightly
5+
56
RUN git clone https://github.com/TachyonConcepts/TachyonConcept .
67
RUN RUSTFLAGS="-C target-cpu=native -C opt-level=3 -C target-feature=+avx2,+bmi2" cargo install --path .
78
RUN cargo clean

frameworks/Rust/warp-rust/warp-rust.dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM rust:1.70
1+
FROM rust:1.93
22

33
WORKDIR /warp-rust
44
COPY src src

0 commit comments

Comments
 (0)