Skip to content

Commit a8abcc1

Browse files
committed
Added root local bin to PATH
1 parent 00ffe7f commit a8abcc1

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

docker/dev/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ RUN touch /app/dimos/__init__.py
3131
# Install UV for fast Python package management
3232
ENV UV_SYSTEM_PYTHON=1
3333
RUN curl -LsSf https://astral.sh/uv/install.sh | sh
34-
ENV PATH="/root/.cargo/bin:$PATH"
34+
ENV PATH="/root/.local/bin:$PATH"
3535

3636
# Install dependencies with UV (10-100x faster than pip)
3737
RUN uv pip install .[dev]

docker/python/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ RUN apt-get purge -y python3-blinker python3-sympy python3-oauthlib || true
4040
# Install UV for fast Python package management
4141
ENV UV_SYSTEM_PYTHON=1
4242
RUN curl -LsSf https://astral.sh/uv/install.sh | sh
43-
ENV PATH="/root/.cargo/bin:$PATH"
43+
ENV PATH="/root/.local/bin:$PATH"
4444

4545
WORKDIR /app
4646

0 commit comments

Comments
 (0)