From 36f82d9e3d2011d387aff0be87c8e7f917050ed5 Mon Sep 17 00:00:00 2001 From: Logan Date: Tue, 21 Apr 2026 22:36:09 -0400 Subject: [PATCH] Use UV for pip --- drb-edge-node/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drb-edge-node/Dockerfile b/drb-edge-node/Dockerfile index 4977ce2..10a65f6 100644 --- a/drb-edge-node/Dockerfile +++ b/drb-edge-node/Dockerfile @@ -10,7 +10,7 @@ RUN apt-get update && apt-get install -y \ WORKDIR /app COPY requirements.txt . -RUN pip install --no-cache-dir -r requirements.txt +RUN pip install uv && uv pip install --system --no-cache-dir -r requirements.txt COPY app/ ./app/ COPY tests/ ./tests/