From 4d808f0ea9e53057bc3e90792c3988ffe90d54c2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Traian-Florin=20=C8=98erb=C4=83nu=C8=9B=C4=83?= Date: Sat, 21 Dec 2024 13:20:35 +0200 Subject: [PATCH] Added Rust to Dockerfile --- .github/actions/with-k/Dockerfile | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/actions/with-k/Dockerfile b/.github/actions/with-k/Dockerfile index 9a096d049..216182a51 100644 --- a/.github/actions/with-k/Dockerfile +++ b/.github/actions/with-k/Dockerfile @@ -91,6 +91,13 @@ RUN pip3 install --user \ cytoolz \ numpy +# Install Rust +RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y +ENV PATH=/home/user/.cargo/bin:$PATH + +RUN rustup target add wasm32-unknown-unknown + + # Install K RUN git clone --depth=1 --branch v${K_COMMIT} https://${KFRAMEWORK_REPO} k RUN cd k && git submodule update --init --recursive