fix: proper path for rust

This commit is contained in:
murdle 2026-02-28 18:31:18 +02:00
parent e4a690c3ec
commit 2cc58b96f0

View File

@ -20,8 +20,8 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y \
--default-toolchain stable --profile minimal \
&& rustup target add wasm32-unknown-unknown \
&& cargo install wasm-pack
&& ~/.cargo/bin/rustup target add wasm32-unknown-unknown \
&& ~/.cargo/bin/cargo install wasm-pack
FROM base AS deps