lemonteaa commited on
Commit
a6795b4
1 Parent(s): 8e57396

test hypothesis

Browse files
Files changed (1) hide show
  1. 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"]