From 3af794ceea3d372dc9c8ef4d9780662dbb5ea823 Mon Sep 17 00:00:00 2001 From: cybermaggedon Date: Mon, 13 Apr 2026 21:18:58 +0100 Subject: [PATCH] Use manifests to build for amd64 and arm64 (#798) (#801) Remove Pytorch +cpu invocation, so it builds on ARM --- containers/Containerfile.hf | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/containers/Containerfile.hf b/containers/Containerfile.hf index 351300ae..250ad8e1 100644 --- a/containers/Containerfile.hf +++ b/containers/Containerfile.hf @@ -15,8 +15,10 @@ RUN dnf install -y python3.13 && \ pip3 install --no-cache-dir pulsar-client==3.7.0 && \ dnf clean all -RUN pip3 install torch==2.5.1+cpu \ - --index-url https://download.pytorch.org/whl/cpu +#RUN pip3 install torch==2.5.1+cpu \ +# --index-url https://download.pytorch.org/whl/cpu + +RUN pip3 install torch==2.5.1 RUN pip3 install --no-cache-dir \ langchain==0.3.25 langchain-core==0.3.60 langchain-huggingface==0.2.0 \