We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2d76433 commit 2283e35Copy full SHA for 2283e35
Dockerfile
@@ -10,6 +10,9 @@ ENV PYTHONDONTWRITEBYTECODE=1 \
10
# Set work directory
11
WORKDIR /app
12
13
+# Pin uv to a trusted version; bump deliberately during dependency maintenance.
14
+ARG UV_VERSION=0.5.31
15
+
16
# Install system dependencies
17
RUN apt-get update \
18
&& apt-get install -y --no-install-recommends \
@@ -19,7 +22,7 @@ RUN apt-get update \
19
22
20
23
# Install Python dependencies with uv
21
24
COPY requirements.txt .
-RUN pip install --no-cache-dir uv \
25
+RUN pip install --no-cache-dir "uv==${UV_VERSION}" \
26
&& uv pip install --system -r requirements.txt
27
28
# Copy project
0 commit comments