From f0d486846663c62d424db4fa99e7ad0172d1f4f8 Mon Sep 17 00:00:00 2001 From: frostyfan109 Date: Fri, 19 Dec 2025 14:22:11 -0500 Subject: [PATCH 1/2] Update urllib to address CVE --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 13a2d24b..6da165da 100644 --- a/requirements.txt +++ b/requirements.txt @@ -28,4 +28,4 @@ retrying click httpx bmt==1.4.4 -urllib3 +urllib3>=2.6.2 From 32a8c802bae071e126410ee87fc1f07c131fc9fc Mon Sep 17 00:00:00 2001 From: frostyfan109 Date: Fri, 19 Dec 2025 16:04:04 -0500 Subject: [PATCH 2/2] lock base image to python 3.13.11 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 3c6722c5..5fd272ea 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,7 @@ # A container for the core semantic-search capability. # ###################################################### -FROM python:alpine3.22 +FROM python:3.13.11-alpine3.23 # Install required packages