From e70e7c0be9d42f71c2bda98d5bd54181ce8d1df9 Mon Sep 17 00:00:00 2001 From: Logan Date: Tue, 21 Apr 2026 22:36:01 -0400 Subject: [PATCH] Use UV for pip --- drb-c2-core/Dockerfile | 2 +- drb-server-discord-bot/Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/drb-c2-core/Dockerfile b/drb-c2-core/Dockerfile index e1226fc..1575b31 100644 --- a/drb-c2-core/Dockerfile +++ b/drb-c2-core/Dockerfile @@ -3,7 +3,7 @@ FROM python:3.14-slim 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/ diff --git a/drb-server-discord-bot/Dockerfile b/drb-server-discord-bot/Dockerfile index ad98819..413629d 100644 --- a/drb-server-discord-bot/Dockerfile +++ b/drb-server-discord-bot/Dockerfile @@ -3,7 +3,7 @@ FROM python:3.14-slim 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/