File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed
codeserver/ubi9-python-3.12 Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -230,7 +230,8 @@ COPY --from=whl-cache /tmp/control /dev/null
230
230
RUN --mount=type=cache,target=/root/.cache/uv \
231
231
echo "Installing softwares and packages" && \
232
232
# we can ensure wheels are consumed from the cache only by restricting internet access for uv install with '--offline' flag
233
- uv pip install --offline --cache-dir /root/.cache/uv --requirements=./pylock.toml && \
233
+ # TODO(jdanek): seen some builds fail on GitHub Actions with --offline and see no need to limit ourselves to the cache, will remove this
234
+ uv pip install --cache-dir /root/.cache/uv --requirements=./pylock.toml && \
234
235
# Note: debugpy wheel availabe on pypi (in uv cache) is none-any but bundles amd64.so files
235
236
# Build debugpy from source instead
236
237
uv pip install --no-cache git+https://github.com/microsoft/debugpy.git@v$(grep -A1 '\"debugpy\"' ./pylock.toml | grep -Eo '\b[0-9\.]+\b') && \
You can’t perform that action at this time.
0 commit comments