reztilop commited on
Commit
41e2088
·
verified ·
1 Parent(s): 10ca15e

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -3
Dockerfile CHANGED
@@ -1,7 +1,7 @@
1
- FROM python:3.11-slim
2
 
3
- # Installer litellm
4
- RUN pip install litellm
5
 
6
  WORKDIR /app
7
 
 
1
+ FROM ghcr.io/berriai/litellm:latest
2
 
3
+ # Installer les dépendances manquantes
4
+ RUN pip install 'litellm[proxy]' backoff
5
 
6
  WORKDIR /app
7