Skip to content

Commit 2283e35

Browse files
committed
cambios de copilot
1 parent 2d76433 commit 2283e35

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

Dockerfile

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@ ENV PYTHONDONTWRITEBYTECODE=1 \
1010
# Set work directory
1111
WORKDIR /app
1212

13+
# Pin uv to a trusted version; bump deliberately during dependency maintenance.
14+
ARG UV_VERSION=0.5.31
15+
1316
# Install system dependencies
1417
RUN apt-get update \
1518
&& apt-get install -y --no-install-recommends \
@@ -19,7 +22,7 @@ RUN apt-get update \
1922

2023
# Install Python dependencies with uv
2124
COPY requirements.txt .
22-
RUN pip install --no-cache-dir uv \
25+
RUN pip install --no-cache-dir "uv==${UV_VERSION}" \
2326
&& uv pip install --system -r requirements.txt
2427

2528
# Copy project

0 commit comments

Comments
 (0)