Try again...
Browse files- Dockerfile +2 -0
Dockerfile
CHANGED
@@ -12,7 +12,9 @@ RUN pip install --no-cache-dir --upgrade pip
|
|
12 |
RUN pip install langfuse>=2.0.0 prisma
|
13 |
|
14 |
COPY --chown=user litellm_config.yaml .
|
|
|
15 |
|
16 |
RUN chmod +x entrypoint.sh
|
|
|
17 |
|
18 |
CMD ["--port", "7860", "--config", "litellm_config.yaml"]
|
|
|
12 |
RUN pip install langfuse>=2.0.0 prisma
|
13 |
|
14 |
COPY --chown=user litellm_config.yaml .
|
15 |
+
RUN cp /app $HOME/app
|
16 |
|
17 |
RUN chmod +x entrypoint.sh
|
18 |
+
RUN chown -R user $HOME/app
|
19 |
|
20 |
CMD ["--port", "7860", "--config", "litellm_config.yaml"]
|