Skip to content

Commit 3934adb

Browse files
committed
Update Dockerfile to adjust PATH for uv installation
- Changed the PATH environment variable to include the directory for the installed uv binary, ensuring proper execution of the tool.
1 parent 412dd16 commit 3934adb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ RUN add-apt-repository ppa:deadsnakes/ppa \
4343

4444
# Install uv using official installer
4545
RUN curl -LsSf https://astral.sh/uv/install.sh | sh
46-
ENV PATH="/root/.cargo/bin:$PATH"
46+
ENV PATH="/root/.local/bin:$PATH"
4747

4848
# Create working directory
4949
RUN mkdir -p /root/src

0 commit comments

Comments
 (0)