Skip to content

Commit

Permalink
Added Rust to Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
traiansf committed Dec 21, 2024
1 parent af04456 commit 4d808f0
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/actions/with-k/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 4d808f0

Please sign in to comment.