From bb596affee2775379686a67459b4aad33d4fbafa Mon Sep 17 00:00:00 2001 From: Miguel Caballer Date: Wed, 28 Jan 2026 17:15:06 +0100 Subject: [PATCH] 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 82ad52f9df..ba492f40bf 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"]