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/