From 3d406bb35147beec2a1b3bc7fdc01e5948d96113 Mon Sep 17 00:00:00 2001 From: Jeff Emanuel <35050222+Dicklesworthstone@users.noreply.github.com> Date: Mon, 25 Sep 2023 22:32:29 -0400 Subject: [PATCH] Update Dockerfile --- Dockerfile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Dockerfile b/Dockerfile index 6d47d78..cfcaefc 100644 --- a/Dockerfile +++ b/Dockerfile @@ -29,6 +29,10 @@ RUN apt-get update && apt-get install -y \ sudo && \ rm -rf /var/lib/apt/lists/* +# Install latest Rust and Cargo using rustup +RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y +ENV PATH="/root/.cargo/bin:${PATH}" + # Upgrade pip and install wheel RUN python3 -m pip install --upgrade pip && \ python3 -m pip install wheel