Use manifests to build for amd64 and arm64 (#798) (#801)

Remove Pytorch +cpu invocation, so it builds on ARM
This commit is contained in:
cybermaggedon 2026-04-13 21:18:58 +01:00 committed by GitHub
parent baf8d861af
commit 3af794ceea
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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 \