Spaces:
Sleeping
Sleeping
test hypothesis
Browse files- Dockerfile +8 -0
Dockerfile
CHANGED
@@ -1,3 +1,11 @@
|
|
1 |
FROM ghcr.io/berriai/litellm:main-v1.38.8-stable
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
|
3 |
CMD ["--port", "7860", "--config", "litellm_config.yaml"]
|
|
|
1 |
FROM ghcr.io/berriai/litellm:main-v1.38.8-stable
|
2 |
+
USER root
|
3 |
+
ENV HOME=/root
|
4 |
+
|
5 |
+
WORKDIR /app
|
6 |
+
|
7 |
+
COPY litellm_config.yaml .
|
8 |
+
|
9 |
+
RUN chmod +x entrypoint.sh
|
10 |
|
11 |
CMD ["--port", "7860", "--config", "litellm_config.yaml"]
|