From f234cf00aa158c30e2fe49256ac3e9d49584da63 Mon Sep 17 00:00:00 2001 From: Hannah DeFazio Date: Mon, 27 Jan 2025 12:21:50 -0500 Subject: [PATCH] Remove starlette pinned version because it is already in the requirements --- python/storage-initializer.Dockerfile | 2 -- 1 file changed, 2 deletions(-) diff --git a/python/storage-initializer.Dockerfile b/python/storage-initializer.Dockerfile index 3cbc1763ff8..86efc119414 100644 --- a/python/storage-initializer.Dockerfile +++ b/python/storage-initializer.Dockerfile @@ -26,8 +26,6 @@ COPY kserve kserve RUN cd kserve && poetry install --no-interaction --no-cache --extras "storage" RUN pip install --no-cache-dir krbcontext==0.10 hdfs~=2.6.0 requests-kerberos==0.14.0 -# Fixes Quay alert GHSA-2jv5-9r88-3w3p https://github.com/Kludex/python-multipart/security/advisories/GHSA-2jv5-9r88-3w3p -RUN pip install --no-cache-dir starlette==0.36.2 FROM registry.access.redhat.com/ubi8/ubi-minimal:latest AS prod