Update Dockerfile

This commit is contained in:
Ishaan Jaff 2024-01-27 14:36:30 -08:00 committed by GitHub
parent e03d5d7d70
commit 8d3e818fb1
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -47,9 +47,13 @@ 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
ENTRYPOINT ["litellm"]
CMD ["--port", "4000", "--config", "./proxy_server_config.yaml", "--detailed_debug"]
CMD ["--port", "4000"]