From 75fc4f41278d050eaebb7ba8f267772a8b7c2e38 Mon Sep 17 00:00:00 2001 From: Tolya Korniltsev Date: Mon, 16 Dec 2024 18:43:39 +0700 Subject: [PATCH] fix(examples): fix update_examples action, adding cargo (#3782) --- tools/update_examples.Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tools/update_examples.Dockerfile b/tools/update_examples.Dockerfile index 2e91cb9ef2..52d7304717 100644 --- a/tools/update_examples.Dockerfile +++ b/tools/update_examples.Dockerfile @@ -31,3 +31,6 @@ ENV PATH=$PATH:/usr/local/bin ARG RUBY_VERSION=3.2.2 RUN curl -sSL https://get.rvm.io | bash RUN /bin/bash -l -c "rvm install ruby-${RUBY_VERSION} && rvm --default use ruby-${RUBY_VERSION}" + +RUN curl https://sh.rustup.rs -sSf | sh -s -- -y --default-toolchain stable +ENV PATH=$PATH:/root/.cargo/bin \ No newline at end of file