Use UV for pip

This commit is contained in:
Logan
2026-04-21 22:36:01 -04:00
parent 88103c8011
commit e70e7c0be9
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -3,7 +3,7 @@ FROM python:3.14-slim
WORKDIR /app WORKDIR /app
COPY requirements.txt . 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 app/ ./app/
COPY tests/ ./tests/ COPY tests/ ./tests/
+1 -1
View File
@@ -3,7 +3,7 @@ FROM python:3.14-slim
WORKDIR /app WORKDIR /app
COPY requirements.txt . 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 app/ ./app/