lemonteaa commited on
Commit
9f3698b
1 Parent(s): f5aec1b

Create Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +11 -0
Dockerfile ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ FROM ghcr.io/berriai/litellm-database:main-latest
2
+
3
+ WORKDIR /app
4
+
5
+ COPY litellm_config.yaml .
6
+
7
+ RUN chmod +x entrypoint.sh
8
+
9
+ RUN pip install langfuse>=2.0.0
10
+
11
+ CMD ["--port", "7860", "--config", "litellm_config.yaml"]