From 3d11b030d51997c047492ab76d4e27067290dac1 Mon Sep 17 00:00:00 2001 From: ishaan-jaff Date: Sat, 27 Jan 2024 16:47:10 -0800 Subject: [PATCH] Revert "Merge branch 'main' into main" This reverts commit a92461caa5352bd06ca40962e3bed7f36c7e669c, reversing changes made to 9dd857e0a6d44a9b4c2f68395e086ad357ffb3bd. --- Dockerfile | 14 ++------------ 1 file changed, 2 insertions(+), 12 deletions(-) diff --git a/Dockerfile b/Dockerfile index 39d88d4eb..e18d5d979 100644 --- a/Dockerfile +++ b/Dockerfile @@ -47,19 +47,9 @@ COPY --from=builder /wheels/ /wheels/ # Install the built wheel using pip; again using a wildcard if it's the only file RUN pip install *.whl /wheels/* --no-index --find-links=/wheels/ && rm -f *.whl && rm -rf /wheels -# Generate prisma client -RUN prisma generate RUN chmod +x entrypoint.sh EXPOSE 4000/tcp -# # Set your entrypoint and command -RUN echo "app contents" - -# List contents of /app -RUN ls -la /app - - -ENTRYPOINT ["python3", "/app/litellm/proxy/proxy_cli.py"] - -CMD ["--port", "4000"] +ENTRYPOINT ["litellm"] +CMD ["--port", "4000", "--config", "./proxy_server_config.yaml", "--detailed_debug"] \ No newline at end of file