lemonteaa commited on
Commit
ca4edf7
1 Parent(s): 3b45c72

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +4 -4
Dockerfile CHANGED
@@ -1,13 +1,13 @@
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
- RUN chown -R 1000 /root/.cache/prisma-python/binaries/5.4.2/
12
-
13
  CMD ["--port", "7860", "--config", "litellm_config.yaml"]
 
1
  FROM ghcr.io/berriai/litellm:main-v1.38.8-stable
 
 
2
 
3
+ RUN chown -R 1000:1000 /root /app
4
+
5
+ USER 1000
6
+ ENV HOME=/root
7
  WORKDIR /app
8
 
9
  COPY litellm_config.yaml .
10
 
11
  RUN chmod +x entrypoint.sh
12
 
 
 
13
  CMD ["--port", "7860", "--config", "litellm_config.yaml"]