From ae1e83febb2a9304ac537f6c97b146d403072089 Mon Sep 17 00:00:00 2001 From: hjh0119 Date: Thu, 15 Jan 2026 20:53:05 +0800 Subject: [PATCH] remove ollama --- docker/Dockerfile.ascend | 3 +-- docker/Dockerfile.ubuntu | 1 - 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/docker/Dockerfile.ascend b/docker/Dockerfile.ascend index ce8db144..b0eeef0e 100644 --- a/docker/Dockerfile.ascend +++ b/docker/Dockerfile.ascend @@ -91,8 +91,7 @@ fi ARG CUR_TIME={cur_time} RUN echo $CUR_TIME -RUN curl -fsSL https://ollama.com/install.sh | sh && \ - pip install --no-cache-dir -U funasr scikit-learn && \ +RUN pip install --no-cache-dir -U funasr scikit-learn && \ pip install --no-cache-dir -U qwen_vl_utils qwen_omni_utils librosa timm transformers accelerate peft trl safetensors && \ cd /tmp && GIT_LFS_SKIP_SMUDGE=1 git clone -b {swift_branch} --single-branch https://github.com/modelscope/ms-swift.git && \ cd ms-swift && pip install .[llm] && \ diff --git a/docker/Dockerfile.ubuntu b/docker/Dockerfile.ubuntu index 6e46e9e9..6f912efc 100644 --- a/docker/Dockerfile.ubuntu +++ b/docker/Dockerfile.ubuntu @@ -57,7 +57,6 @@ ARG CUR_TIME={cur_time} RUN echo $CUR_TIME RUN bash /tmp/install.sh {version_args} && \ - curl -fsSL https://ollama.com/install.sh | sh && \ pip install --no-cache-dir -U funasr scikit-learn && \ pip install --no-cache-dir -U qwen_vl_utils qwen_omni_utils librosa timm transformers accelerate peft trl safetensors && \ cd /tmp && GIT_LFS_SKIP_SMUDGE=1 git clone -b {swift_branch} --single-branch https://github.com/modelscope/ms-swift.git && \