diff --git a/convert_models/Containerfile b/convert_models/Containerfile index 33c0408c..5672a12c 100644 --- a/convert_models/Containerfile +++ b/convert_models/Containerfile @@ -1,4 +1,4 @@ -FROM registry.access.redhat.com/ubi9/python-311:1-66.1720018730 +FROM registry.access.redhat.com/ubi9/python-311:1-72.1722518949 WORKDIR /opt/app-root/src/converter USER root RUN chown -R default:root /opt/app-root/src/converter diff --git a/eval/promptfoo/base/Containerfile b/eval/promptfoo/base/Containerfile index c0e2126a..4a3d71ff 100644 --- a/eval/promptfoo/base/Containerfile +++ b/eval/promptfoo/base/Containerfile @@ -1,4 +1,4 @@ -FROM registry.access.redhat.com/ubi9/nodejs-20-minimal:1-51 +FROM registry.access.redhat.com/ubi9/nodejs-20-minimal:1-57 WORKDIR /promptfoo RUN npm install promptfoo ENV PROMPTFOO_DISABLE_TELEMETRY=1 diff --git a/model_servers/llamacpp_python/base/Containerfile b/model_servers/llamacpp_python/base/Containerfile index ba704fcc..b282fbb6 100644 --- a/model_servers/llamacpp_python/base/Containerfile +++ b/model_servers/llamacpp_python/base/Containerfile @@ -1,4 +1,4 @@ -FROM registry.access.redhat.com/ubi9/python-311:1-66.1720018730 +FROM registry.access.redhat.com/ubi9/python-311:1-72.1722518949 WORKDIR /locallm COPY src . USER root diff --git a/model_servers/llamacpp_python/src/requirements.txt b/model_servers/llamacpp_python/src/requirements.txt index 0aa98ca5..b0ce45d4 100644 --- a/model_servers/llamacpp_python/src/requirements.txt +++ b/model_servers/llamacpp_python/src/requirements.txt @@ -1,3 +1,3 @@ -llama-cpp-python[server]==0.2.82 +llama-cpp-python[server]==0.2.85 transformers==4.41.2 pip==24.0 diff --git a/model_servers/llamacpp_python/vulkan/amd64/Containerfile b/model_servers/llamacpp_python/vulkan/amd64/Containerfile index 6a7c027e..b10c06ab 100644 --- a/model_servers/llamacpp_python/vulkan/amd64/Containerfile +++ b/model_servers/llamacpp_python/vulkan/amd64/Containerfile @@ -1,4 +1,4 @@ -FROM registry.access.redhat.com/ubi9/python-311:1-66.1720018730 +FROM registry.access.redhat.com/ubi9/python-311:1-72.1722518949 USER 0 RUN dnf install -y python3-dnf-plugin-versionlock RUN dnf install -y mesa-vulkan-drivers-23.3.3-1.el9.x86_64 diff --git a/model_servers/llamacpp_python/vulkan/arm64/Containerfile b/model_servers/llamacpp_python/vulkan/arm64/Containerfile index dedafef2..17e90452 100644 --- a/model_servers/llamacpp_python/vulkan/arm64/Containerfile +++ b/model_servers/llamacpp_python/vulkan/arm64/Containerfile @@ -1,4 +1,4 @@ -FROM registry.access.redhat.com/ubi9/python-311:1-66.1720018730 +FROM registry.access.redhat.com/ubi9/python-311:1-72.1722518949 USER 0 RUN dnf install -y python3-dnf-plugin-versionlock && \ dnf install -y \ diff --git a/model_servers/object_detection_python/base/Containerfile b/model_servers/object_detection_python/base/Containerfile index 65bfda98..ef6b1afc 100644 --- a/model_servers/object_detection_python/base/Containerfile +++ b/model_servers/object_detection_python/base/Containerfile @@ -1,4 +1,4 @@ -FROM registry.access.redhat.com/ubi9/python-311:1-66.1720018730 +FROM registry.access.redhat.com/ubi9/python-311:1-72.1722518949 ARG PORT=8000 WORKDIR /app COPY src . diff --git a/model_servers/object_detection_python/src/requirements.txt b/model_servers/object_detection_python/src/requirements.txt index 6d8acd4c..8667511d 100644 --- a/model_servers/object_detection_python/src/requirements.txt +++ b/model_servers/object_detection_python/src/requirements.txt @@ -6,7 +6,7 @@ click==8.1.7 dnspython==2.6.1 email_validator==2.2.0 fastapi==0.111.1 -fastapi-cli==0.0.4 +fastapi-cli==0.0.5 filelock==3.15.4 fsspec==2024.6.1 h11==0.14.0 @@ -39,17 +39,17 @@ shellingham==1.5.4 sniffio==1.3.1 starlette==0.37.2 sympy==1.12.1 -timm==1.0.7 +timm==1.0.8 tokenizers==0.19.1 torch==2.3.1 torchvision==0.18.1 -tqdm==4.66.4 +tqdm==4.66.5 transformers==4.41.2 typer==0.12.3 typing_extensions==4.12.2 ujson==5.10.0 urllib3==2.2.2 -uvicorn==0.30.3 +uvicorn==0.30.5 uvloop==0.19.0 watchfiles==0.22.0 websockets==12.0 diff --git a/models/Containerfile b/models/Containerfile index 566adbcf..4a896fbb 100644 --- a/models/Containerfile +++ b/models/Containerfile @@ -7,7 +7,7 @@ # https://huggingface.co/ggerganov/whisper.cpp/resolve/main/ggml-small.bin # podman build --build-arg="MODEL_URL=https://..." -t quay.io/yourimage . # -FROM registry.access.redhat.com/ubi9/ubi-micro:9.4-9 +FROM registry.access.redhat.com/ubi9/ubi-micro:9.4-13 # Can be substituted using the --build-arg defined above ARG MODEL_URL=https://huggingface.co/instructlab/granite-7b-lab-GGUF/resolve/main/granite-7b-lab-Q4_K_M.gguf diff --git a/recipes/audio/audio_to_text/app/Containerfile b/recipes/audio/audio_to_text/app/Containerfile index 8719e66d..28d2b580 100644 --- a/recipes/audio/audio_to_text/app/Containerfile +++ b/recipes/audio/audio_to_text/app/Containerfile @@ -1,4 +1,4 @@ -FROM registry.access.redhat.com/ubi9/python-311:1-66.1720018730 +FROM registry.access.redhat.com/ubi9/python-311:1-72.1722518949 WORKDIR /locallm COPY requirements.txt /locallm/requirements.txt RUN pip install --upgrade pip && \ diff --git a/recipes/computer_vision/object_detection/app/Containerfile b/recipes/computer_vision/object_detection/app/Containerfile index b98d5025..a5f6ae37 100644 --- a/recipes/computer_vision/object_detection/app/Containerfile +++ b/recipes/computer_vision/object_detection/app/Containerfile @@ -1,4 +1,4 @@ -FROM registry.access.redhat.com/ubi9/python-311:1-66.1720018730 +FROM registry.access.redhat.com/ubi9/python-311:1-72.1722518949 WORKDIR /locallm COPY requirements.txt /locallm/requirements.txt RUN pip install --upgrade pip && \ diff --git a/recipes/multimodal/image_understanding/app/Containerfile b/recipes/multimodal/image_understanding/app/Containerfile index a57756ca..d81ee153 100644 --- a/recipes/multimodal/image_understanding/app/Containerfile +++ b/recipes/multimodal/image_understanding/app/Containerfile @@ -1,4 +1,4 @@ -FROM registry.access.redhat.com/ubi9/python-311:1-66.1720018730 +FROM registry.access.redhat.com/ubi9/python-311:1-72.1722518949 WORKDIR /image_understanding COPY requirements.txt . RUN pip install --upgrade pip && \ diff --git a/recipes/natural_language_processing/chatbot/app/Containerfile b/recipes/natural_language_processing/chatbot/app/Containerfile index 585f4e4d..29cff1ac 100644 --- a/recipes/natural_language_processing/chatbot/app/Containerfile +++ b/recipes/natural_language_processing/chatbot/app/Containerfile @@ -1,4 +1,4 @@ -FROM registry.access.redhat.com/ubi9/python-311:1-66.1720018730 +FROM registry.access.redhat.com/ubi9/python-311:1-72.1722518949 WORKDIR /chat COPY requirements.txt . RUN pip install --upgrade pip diff --git a/recipes/natural_language_processing/codegen/app/Containerfile b/recipes/natural_language_processing/codegen/app/Containerfile index 6a3258d8..b9de4a33 100644 --- a/recipes/natural_language_processing/codegen/app/Containerfile +++ b/recipes/natural_language_processing/codegen/app/Containerfile @@ -1,4 +1,4 @@ -FROM registry.access.redhat.com/ubi9/python-311:1-66.1720018730 +FROM registry.access.redhat.com/ubi9/python-311:1-72.1722518949 WORKDIR /codegen COPY requirements.txt . RUN pip install --upgrade pip diff --git a/recipes/natural_language_processing/rag/app/Containerfile b/recipes/natural_language_processing/rag/app/Containerfile index a44fd3b9..1aa72f5b 100644 --- a/recipes/natural_language_processing/rag/app/Containerfile +++ b/recipes/natural_language_processing/rag/app/Containerfile @@ -1,4 +1,4 @@ -FROM registry.access.redhat.com/ubi9/python-311:1-66.1720018730 +FROM registry.access.redhat.com/ubi9/python-311:1-72.1722518949 ### Update sqlite for chroma USER root RUN dnf remove sqlite3 -y diff --git a/recipes/natural_language_processing/rag/app/requirements.txt b/recipes/natural_language_processing/rag/app/requirements.txt index 32692bd5..572acc00 100644 --- a/recipes/natural_language_processing/rag/app/requirements.txt +++ b/recipes/natural_language_processing/rag/app/requirements.txt @@ -1,6 +1,6 @@ langchain-openai==0.1.7 langchain==0.1.20 -chromadb==0.5.4 +chromadb==0.5.5 sentence-transformers==2.7.0 streamlit==1.34.0 pypdf==4.2.0 diff --git a/recipes/natural_language_processing/summarizer/app/Containerfile b/recipes/natural_language_processing/summarizer/app/Containerfile index 18941e18..a436555f 100644 --- a/recipes/natural_language_processing/summarizer/app/Containerfile +++ b/recipes/natural_language_processing/summarizer/app/Containerfile @@ -1,4 +1,4 @@ -FROM registry.access.redhat.com/ubi9/python-311:1-66.1720018730 +FROM registry.access.redhat.com/ubi9/python-311:1-72.1722518949 WORKDIR /summarizer COPY requirements.txt . RUN pip install --upgrade pip diff --git a/recipes/natural_language_processing/summarizer/app/requirements.txt b/recipes/natural_language_processing/summarizer/app/requirements.txt index 7d37cf5a..d69383a8 100644 --- a/recipes/natural_language_processing/summarizer/app/requirements.txt +++ b/recipes/natural_language_processing/summarizer/app/requirements.txt @@ -1,5 +1,5 @@ langchain==0.1.20 langchain-openai==0.1.7 streamlit==1.34.0 -PyMuPDF==1.24.7 +PyMuPDF==1.24.9 rouge_score==0.1.2