This is an automated email from the ASF dual-hosted git repository. micafer pushed a commit to branch fix_build_docker_image in repository https://gitbox.apache.org/repos/asf/libcloud.git
commit bb596affee2775379686a67459b4aad33d4fbafa Author: Miguel Caballer <[email protected]> AuthorDate: Wed Jan 28 17:15:06 2026 +0100 Fix Build and Verify Docker Image test --- contrib/Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/contrib/Dockerfile b/contrib/Dockerfile index 82ad52f9d..ba492f40b 100644 --- a/contrib/Dockerfile +++ b/contrib/Dockerfile @@ -56,6 +56,7 @@ RUN if [ ! -f "/libcloud/README.rst" ]; then echo "libcloud/README.rst file not WORKDIR /libcloud RUN set -e && \ - python3.10 -m pip install --no-cache-dir ".[ci]" + python3.10 -m pip install uv && \ + python3.10 -m uv pip install --no-cache-dir --group ci "." CMD ["tox", "-e", "lint,isort-check,black-check,bandit,py3.10,py3.11,py3.12,py3.13,pypypy3.10"]
