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