diff --git a/convert_models/Containerfile b/convert_models/Containerfile index 069c6465..5783d2d2 100644 --- a/convert_models/Containerfile +++ b/convert_models/Containerfile @@ -1,4 +1,4 @@ -FROM registry.access.redhat.com/ubi9/python-311:1-77.1726664316 +FROM registry.access.redhat.com/ubi9/python-311:1-77.1729767833 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 9bea4731..a61933cd 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-63.1725851021 +FROM registry.access.redhat.com/ubi9/nodejs-20-minimal:1-63.1726695170 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 b5dd132f..37530601 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-77.1726664316 +FROM registry.access.redhat.com/ubi9/python-311:1-77.1729767833 WORKDIR /locallm COPY src . USER root diff --git a/model_servers/llamacpp_python/vulkan/amd64/Containerfile b/model_servers/llamacpp_python/vulkan/amd64/Containerfile index eb30ae11..996c7cf2 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-77.1726664316 +FROM registry.access.redhat.com/ubi9/python-311:1-77.1729767833 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 eb371ff5..2f19fe06 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-77.1726664316 +FROM registry.access.redhat.com/ubi9/python-311:1-77.1729767833 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 314d45a8..49fe9105 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-77.1726664316 +FROM registry.access.redhat.com/ubi9/python-311:1-77.1729767833 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 17fdbc95..fcb45539 100644 --- a/model_servers/object_detection_python/src/requirements.txt +++ b/model_servers/object_detection_python/src/requirements.txt @@ -11,7 +11,7 @@ filelock==3.15.4 fsspec==2024.6.1 h11==0.14.0 httpcore==1.0.6 -httptools==0.6.1 +httptools==0.6.4 httpx==0.27.2 huggingface-hub==0.23.4 idna==3.7 @@ -22,14 +22,14 @@ mdurl==0.1.2 mpmath==1.3.0 networkx==3.3 numpy==2.0.1 -orjson==3.10.7 +orjson==3.10.10 packaging==24.1 pillow==10.3.0 pydantic==2.7.4 pydantic_core==2.18.4 Pygments==2.18.0 python-dotenv==1.0.1 -python-multipart==0.0.12 +python-multipart==0.0.16 PyYAML==6.0.2 regex==2024.5.15 requests==2.32.3 @@ -39,11 +39,11 @@ shellingham==1.5.4 sniffio==1.3.1 starlette==0.37.2 sympy==1.12.1 -timm==1.0.9 +timm==1.0.11 tokenizers==0.19.1 torch==2.3.1 torchvision==0.18.1 -tqdm==4.66.5 +tqdm==4.66.6 transformers==4.41.2 typer==0.12.5 typing_extensions==4.12.2 diff --git a/recipes/audio/audio_to_text/app/Containerfile b/recipes/audio/audio_to_text/app/Containerfile index 701aead2..d5e851f6 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-77.1726664316 +FROM registry.access.redhat.com/ubi9/python-311:1-77.1729767833 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 7b42097b..489a7d46 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-77.1726664316 +FROM registry.access.redhat.com/ubi9/python-311:1-77.1729767833 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 de579da9..21f4d756 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-77.1726664316 +FROM registry.access.redhat.com/ubi9/python-311:1-77.1729767833 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 c87ed477..163906b3 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-77.1726664316 +FROM registry.access.redhat.com/ubi9/python-311:1-77.1729767833 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 f57c27f7..cddc0ee5 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-77.1726664316 +FROM registry.access.redhat.com/ubi9/python-311:1-77.1729767833 WORKDIR /codegen COPY requirements.txt . RUN pip install --upgrade pip diff --git a/recipes/natural_language_processing/function_calling/app/Containerfile b/recipes/natural_language_processing/function_calling/app/Containerfile index f13fb3e5..1335dd56 100644 --- a/recipes/natural_language_processing/function_calling/app/Containerfile +++ b/recipes/natural_language_processing/function_calling/app/Containerfile @@ -1,4 +1,4 @@ -FROM registry.access.redhat.com/ubi9/python-311:1-77.1726664316 +FROM registry.access.redhat.com/ubi9/python-311:1-77.1729767833 WORKDIR /function-call 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 593ca9fa..17ad9c03 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-77.1726664316 +FROM registry.access.redhat.com/ubi9/python-311:1-77.1729767833 ### 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 e1a2865a..6ba95889 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.13 +chromadb==0.5.16 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 9ce10d25..9957a3f6 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-77.1726664316 +FROM registry.access.redhat.com/ubi9/python-311:1-77.1729767833 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 45511c0a..5d4d7645 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.11 +PyMuPDF==1.24.13 rouge_score==0.1.2