diff --git a/dockerfile b/dockerfile index 64563f0..38c8e62 100644 --- a/dockerfile +++ b/dockerfile @@ -14,6 +14,10 @@ RUN apt-get update && apt-get install -y \ python3-dev \ && rm -rf /var/lib/apt/lists/* +# Install Rust using the simpler method +RUN curl https://sh.rustup.rs -sSf | bash -s -- -y +RUN echo 'source $HOME/.cargo/env' >> $HOME/.bashrc + # Copy requirements and install dependencies COPY requirements.txt . RUN pip install --no-cache-dir --user -r requirements.txt