File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 3232 - name : Setup Rust toolchain
3333 uses : dtolnay/rust-toolchain@master
3434 with :
35- toolchain : nightly-2025-08-14
35+ toolchain : nightly-2026-02-20
3636 targets : wasm32-unknown-unknown
3737 - uses : Swatinem/rust-cache@v2
3838 with :
Original file line number Diff line number Diff line change 22# cd .. && docker build -f filen-relay/Dockerfile . -t filen-relay && cd filen-relay
33
44# see https://dioxuslabs.com/learn/0.7/tutorial/deploy#building-a-dockerfile
5- # using nightly-2025-08-14 toolchain as per rust-toolchain.toml
5+ # using nightly-2026-02-20 toolchain as per rust-toolchain.toml
66
77FROM rust:1 AS chef
8- RUN cargo +nightly-2025-08-14 install cargo-chef
8+ RUN cargo +nightly-2026-02-20 install cargo-chef
99WORKDIR /app
1010
1111FROM chef AS planner
1212COPY . .
13- RUN cargo +nightly-2025-08-14 chef prepare --recipe-path recipe.json
13+ RUN cargo +nightly-2026-02-20 chef prepare --recipe-path recipe.json
1414
1515FROM chef AS builder
1616COPY --from=planner /app/recipe.json recipe.json
17- RUN cargo +nightly-2025-08-14 chef cook --release --recipe-path recipe.json
17+ RUN cargo +nightly-2026-02-20 chef cook --release --recipe-path recipe.json
1818RUN rustup target add wasm32-unknown-unknown
1919# install dioxus-cli
2020RUN curl -L --proto '=https' --tlsv1.2 -sSf https://raw.githubusercontent.com/cargo-bins/cargo-binstall/main/install-from-binstall-release.sh | bash
You can’t perform that action at this time.
0 commit comments