We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 49064ef commit 7811858Copy full SHA for 7811858
Dockerfile
@@ -17,8 +17,8 @@ RUN apt-get update && \
17
# uv export reads uv.lock to produce a pinned, reproducible dependency list;
18
# pip wheel compiles each resolved package into a .whl file for offline installation
19
COPY --chown=root:root --chmod=644 pyproject.toml uv.lock ./
20
-RUN pip install --no-cache-dir uv --quiet && \
21
- uv export --no-hashes | pip wheel --no-cache-dir --wheel-dir=/app/wheelhouse -r /dev/stdin
+RUN pip install --no-cache-dir uv==0.10.1 --quiet && \
+ uv export --frozen --no-dev --no-hashes | pip wheel --no-cache-dir --wheel-dir=/app/wheelhouse -r /dev/stdin
22
23
# ------------------------------------------------------------------------------
24
# Stage 2: Runtime
0 commit comments