From 429e2c98bc6a20529cbd3c9d4cc4e1d38ed14ff3 Mon Sep 17 00:00:00 2001 From: manascb1344 Date: Tue, 11 Feb 2025 02:35:24 +0530 Subject: [PATCH] Update Dockerfile pip installation with system flag --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 4781b28..65df327 100644 --- a/Dockerfile +++ b/Dockerfile @@ -21,7 +21,7 @@ COPY . . RUN git submodule update --init --recursive --remote # Install dependencies with optimizations -RUN uv pip install --no-build-isolation -e .[compile] && \ +RUN uv pip install --system --no-build-isolation -e .[compile] && \ # Install flash-attention and other optimizations pip install --no-build-isolation \ flash-attn \