Add Rust to Docker image, update requirements.txt

This commit is contained in:
0xThresh.eth
2024-06-13 15:30:36 -07:00
parent 30fa228a84
commit cdb2367493
3 changed files with 8 additions and 59 deletions

View File

@@ -18,6 +18,12 @@ RUN apt-get update && \
apt-get clean && \
rm -rf /var/lib/apt/lists/*
# Install Rust
RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
# Set up the Rust environment
ENV PATH="/root/.cargo/bin:${PATH}"
RUN rustup default stable
WORKDIR /app