From 11a1d8c0d9078a21241344272bc553ab53bf95ff Mon Sep 17 00:00:00 2001 From: tongke6 Date: Mon, 8 Dec 2025 11:37:51 +0800 Subject: [PATCH] install uv in release-ci image --- dockerfiles/release-ci-aarch64.DockerFile | 5 +++++ dockerfiles/release-ci.DockerFile | 5 +++++ 2 files changed, 10 insertions(+) diff --git a/dockerfiles/release-ci-aarch64.DockerFile b/dockerfiles/release-ci-aarch64.DockerFile index bc24f58..7bb50ef 100644 --- a/dockerfiles/release-ci-aarch64.DockerFile +++ b/dockerfiles/release-ci-aarch64.DockerFile @@ -23,6 +23,11 @@ RUN curl -L -O "https://github.com/conda-forge/miniforge/releases/latest/downloa # Add conda to path ENV PATH="/root/miniforge3/bin:${PATH}" +# install uv +RUN curl -sL https://astral.sh/uv/install.sh -o uv_install.sh \ + && sh uv_install.sh \ + && rm -f uv_install.sh + # Install lld RUN /root/miniforge3/bin/conda install -c conda-forge lld nasm cmake gxx==11.4.0 clangxx -y \ && /root/miniforge3/bin/conda clean -afy diff --git a/dockerfiles/release-ci.DockerFile b/dockerfiles/release-ci.DockerFile index 78412e4..cae8e56 100644 --- a/dockerfiles/release-ci.DockerFile +++ b/dockerfiles/release-ci.DockerFile @@ -23,6 +23,11 @@ RUN /root/miniconda3/bin/conda install mamba -c conda-forge --force-reinstall -y # Add conda to path ENV PATH="/root/miniconda3/bin:${PATH}" +# install uv +RUN curl -sL https://astral.sh/uv/install.sh -o uv_install.sh \ + && sh uv_install.sh \ + && rm -f uv_install.sh + # Install lld RUN /root/miniconda3/bin/conda install -c conda-forge perl lld nasm cmake gxx==11.4.0 -y \ && /root/miniconda3/bin/conda clean -afy