Spaces:
Sleeping
Sleeping
Create Dockerfile
Browse files- 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"]
|