Skip to content
This repository was archived by the owner on Mar 24, 2026. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 3 additions & 4 deletions frameworks/Rust/saphir/saphir.dockerfile
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
FROM rust:latest
FROM rust:1.93

WORKDIR /saphir

ADD . .
COPY . .

RUN cargo clean
RUN RUSTFLAGS="-C target-cpu=native" cargo build --release
RUN RUSTFLAGS="-C target-cpu=native" cargo build --release --quiet

EXPOSE 8080

Expand Down
8 changes: 4 additions & 4 deletions frameworks/Rust/sib/sib.dockerfile
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
FROM rust:latest
FROM rust:1.93

ADD ./ /sib
WORKDIR /sib
COPY . .

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

EXPOSE 8080

Expand Down
5 changes: 3 additions & 2 deletions frameworks/Rust/tachyon-concept/tachyon-concept-ub.dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
FROM rust:latest
FROM rust:1.93
ENV DEBIAN_FRONTEND=noninteractive

WORKDIR /app
RUN rustup install nightly

RUN git clone https://github.com/TachyonConcepts/TachyonConcept .
RUN RUSTFLAGS="-C target-cpu=native -C opt-level=3 -C target-feature=+avx2,+bmi2" cargo install --path .
RUN cargo clean
Expand Down
5 changes: 3 additions & 2 deletions frameworks/Rust/tachyon-concept/tachyon-concept.dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
FROM rust:latest
FROM rust:1.93
ENV DEBIAN_FRONTEND=noninteractive

WORKDIR /app
RUN rustup install nightly

RUN git clone https://github.com/TachyonConcepts/TachyonConcept .
RUN RUSTFLAGS="-C target-cpu=native -C opt-level=3 -C target-feature=+avx2,+bmi2" cargo install --path .
RUN cargo clean
Expand Down
2 changes: 1 addition & 1 deletion frameworks/Rust/warp-rust/warp-rust.dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM rust:1.70
FROM rust:1.93

WORKDIR /warp-rust
COPY src src
Expand Down
Loading