Revert "Merge branch 'main' into main"

This reverts commit a92461caa5, reversing
changes made to 9dd857e0a6.
This commit is contained in:
ishaan-jaff 2024-01-27 16:47:10 -08:00
parent f39cc91953
commit 3d11b030d5

View file

@ -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"]