Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions docker/Dockerfile.sandbox
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ ARG EXTRA_PYTHON_PACKAGES=""

# Install common utilities + optional apt packages
RUN apt-get update && apt-get install -y --no-install-recommends \
ca-certificates \
curl \
wget \
jq \
Expand All @@ -19,13 +20,12 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
tree \
unzip \
${EXTRA_APT_PACKAGES} \
&& update-ca-certificates \
&& rm -rf /var/lib/apt/lists/* \
&& apt-get clean

# Install uv for fast Python package management (in shared location)
RUN curl -LsSf https://astral.sh/uv/install.sh | sh \
&& mv /root/.local/bin/uv /usr/local/bin/uv \
&& mv /root/.local/bin/uvx /usr/local/bin/uvx
# Install uv for fast Python package management
RUN pip install --no-cache-dir uv

# Copy workspace packages
COPY packages/ash-rpc-protocol /tmp/ash-rpc-protocol
Expand Down