Skip to content

Commit

Permalink
fix: install rust
Browse files Browse the repository at this point in the history
  • Loading branch information
distributedstatemachine committed Dec 30, 2024
1 parent 8818aa0 commit 85f1322
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,17 @@ RUN apt-get update && apt-get install -y \
python3-venv \
git \
curl \
build-essential \
&& rm -rf /var/lib/apt/lists/*

# Install uv
RUN pip install uv

# Install Rust and Cargo
RUN curl https://sh.rustup.rs -sSf | sh -s -- -y

ENV PATH="/root/.cargo/bin:${PATH}"

# Copy project files
COPY . .

Expand Down

0 comments on commit 85f1322

Please sign in to comment.