Litellm security fixes (#7282)

* build(Dockerfile): bump node version

* build(Dockerfile): bump python version

fix critical errors

* build(requirements.txt): fix snyk errors
This commit is contained in:
Krish Dholakia 2024-12-18 09:38:52 -08:00 committed by GitHub
parent 0fe8bfe87a
commit e332e93786
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 4 additions and 4 deletions

View File

@ -1,8 +1,8 @@
# Base image for building
ARG LITELLM_BUILD_IMAGE=python:3.11.8-slim
ARG LITELLM_BUILD_IMAGE=python:3.13.1-slim
# Runtime image
ARG LITELLM_RUNTIME_IMAGE=python:3.11.8-slim
ARG LITELLM_RUNTIME_IMAGE=python:3.13.1-slim
# Builder stage
FROM $LITELLM_BUILD_IMAGE AS builder

View File

@ -1 +1 @@
litellm
litellm==1.55.3

View File

@ -1,5 +1,5 @@
# Use the specific Node.js v20.11.0 image
FROM node:20.11.0
FROM node:20.18.1
# Set the working directory inside the container
WORKDIR /app