Allow for user choice of ollama portable zip at build time

This commit is contained in:
Adam Gibson
2025-03-16 15:37:06 +08:00
parent d81b21c462
commit e1da4a4d16
+3 -2
View File
@@ -1,6 +1,7 @@
FROM ubuntu:24.04 FROM ubuntu:24.04
ENV DEBIAN_FRONTEND=noninteractive ENV DEBIAN_FRONTEND=noninteractive
ENV TZ=america/los_angeles ENV TZ=america/los_angeles
ARG IPEXLLM_PORTABLE_ZIP_FILENAME=ollama-ipex-llm-2.2.0b20250313-ubuntu.tgz
# Base packages # Base packages
RUN apt update && \ RUN apt update && \
@@ -24,8 +25,8 @@ RUN mkdir -p /tmp/gpu && \
# Install Ollama Portable Zip # Install Ollama Portable Zip
RUN cd / && \ RUN cd / && \
wget https://github.com/mattcurf/ollama-intel-gpu/releases/download/v0.0.1/ollama-0.5.4-ipex-llm-2.2.0b20250220-ubuntu.tgz && \ wget https://github.com/intel/ipex-llm/releases/download/v2.2.0-nightly/${IPEXLLM_PORTABLE_ZIP_FILENAME} && \
tar xvf ollama-0.5.4-ipex-llm-2.2.0b20250220-ubuntu.tgz --strip-components=1 -C / tar xvf ${IPEXLLM_PORTABLE_ZIP_FILENAME} --strip-components=1 -C /
ENV OLLAMA_HOST=0.0.0.0:11434 ENV OLLAMA_HOST=0.0.0.0:11434